summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-28Merge pull request #1589 from LittleWhite-tb/compil-fixbunnei
Compilation fix
2016-03-28Compilation fixLittleWhite
2016-03-27Merge pull request #1541 from LFsWang/pathbunnei
Fix Qt string encode problem on Windows
2016-03-26Merge pull request #1573 from wwylele/input_fixbunnei
Remove unnecessary const & replace pointer with reference
2016-03-26use reference instead of pointerwwylele
2016-03-26remove unnecessary constwwylele
2016-03-25Merge pull request #1549 from wwylele/acc_gyrobunnei
hid: implement accelerometer and gyroscope back-end
2016-03-25implement GyroscopeCalibrateParamwwylele
2016-03-24Merge pull request #1566 from MerryMage/audio-codecbunnei
DSP: Implement audio codecs (PCM8, PCM16, ADPCM)
2016-03-24DSP: Implement audio codecs (PCM8, PCM16, ADPCM)MerryMage
2016-03-23Merge pull request #1461 from yuriks/imm-mode2Yuri Kunde Schlesner
Immediate-mode improvements
2016-03-23Pica: Improve accuracy of immediate-mode supportYuri Kunde Schlesner
This partially fixes Etrian Odyssey IV.
2016-03-23OpenGL: Don't attempt to draw empty triangle batchesYuri Kunde Schlesner
Our code did not handle this well, causing random crashes in some situations.
2016-03-23Merge pull request #1517 from Lectem/fixSDLcmakebunnei
fix SDL2 detection for Visual
2016-03-22implement accel and gyro backendwwylele
2016-03-22Merge pull request #1508 from JayFoxRox/vs-output-mapbunnei
Respect vs output map
2016-03-22Merge pull request #1560 from lioncash/savedatabunnei
archive_extsavedata: Fix member initialization order
2016-03-22Merge pull request #1563 from lioncash/lolfiqbunnei
armstate: Correct FIQ register banking
2016-03-21armstate: Correct FIQ register bankingLioncash
FIQ has seven banked registers (R8 to R14), not two.
2016-03-21Merge pull request #1559 from lioncash/vecbunnei
soc_u: Get rid of explicit delete and new
2016-03-21Merge pull request #1562 from lioncash/constexprbunnei
core: Mark some helper functions as constexpr
2016-03-21session: Make helper functions constexprLioncash
2016-03-21loader: Make MakeMagic constexprLioncash
2016-03-21archive_extsavedata: Fix member initialization orderLioncash
shared appears in the initializer list before mount_point
2016-03-21soc_u: Get rid of explicit delete and newLioncash
2016-03-20Merge pull request #1302 from Subv/save_fixbunnei
HLE/FS: Fixed many corner cases in our file handling
2016-03-20HLE/FS: Change the error code returned when an ExtSaveData archive is not found.Subv
This allows Fire Emblem to boot again.
2016-03-20HLE/FS: Corrected some style concerns.Subv
2016-03-20Merge pull request #1550 from LittleWhite-tb/gdbstub_include_fixbunnei
Fix missing header
2016-03-20HLE/FS: Fixed creating the config savefile when it doesn't exist.Subv
This fixes a regression.
2016-03-20HLE/FS: Implemented GetFormatInfoSubv
Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
2016-03-20HLE/FS: Don't return an error when deleting the ExtSaveData if it does not ↵Subv
exist.
2016-03-20HLE/FS: Return the proper error codes when opening files.Subv
2016-03-20HLE/FS: Fixed the OpenDirectory error codeSubv
2016-03-20HLE/FS: Return the proper error codes on file Read/Write operations.Subv
These operations are limited by the open flags specified while opening the file.
2016-03-20HLE/FS: Corrected the error codes for DeleteFileSubv
2016-03-20HLE/FS: Corrected the error codes for CreateFileSubv
2016-03-20HLE/FS: FS::CreateFile takes an u64 for the file size.Subv
2016-03-20Fix missing headerLittleWhite
2016-03-20Merge pull request #1538 from lioncash/dotbunnei
shader_interpreter: use std::inner_product for the dot product
2016-03-19Merge pull request #1522 from MerryMage/dylibbundlerbunnei
OS X: Use dylibbundler to include dylibs required by citra in nightly build
2016-03-18Merge pull request #1543 from lioncash/zerobunnei
vector_math: Add missing member in Vec4's SetZero function
2016-03-18vector_math: Add missing member in Vec4's SetZero functionLioncash
2016-03-18Merge pull request #1505 from pippo2931/fefbunnei
GetArchiveResource stub
2016-03-17Merge pull request #1535 from JayFoxRox/fix-alignbunnei
PICA: Alignment happens locally in vertex
2016-03-17Merge pull request #1539 from lioncash/constbunnei
video_core: Don't cast away const
2016-03-17Fix Qt chinese words encode problem on WindowsLFsWang
2016-03-16Merge pull request #1466 from LittleWhite-tb/gamelist-update-recentYuri Kunde Schlesner
Register ROM started through the gamelist in the list of ROM recently started
2016-03-17video_core: Don't cast away constLioncash
2016-03-17shader_interpreter: use std::inner_product for the dot productLioncash
Same thing, less code.