aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2016-03-29But of course, Windows uses 'int' while Linux uses 'socklen_t'Ryan Loebs
2016-03-29Compiling on Windows nowRyan Loebs
2016-03-29Formatting...Ryan Loebs
2016-03-29Addressing PR commentsRyan Loebs
2016-03-28SOC UpdatesRyan Loebs
-Implement GetSockOpt / SetSockOpt -Fix bug in RecvFrom where sending from localhost does not fill in src_addr/src_addr_len on Linux
2016-03-28Add common methods to all cfg:* portsRyan Loebs
2016-03-27frd:u: Initial stub some functionsmailwl
2016-03-26use reference instead of pointerwwylele
2016-03-25Merge pull request #1549 from wwylele/acc_gyrobunnei
hid: implement accelerometer and gyroscope back-end
2016-03-25implement GyroscopeCalibrateParamwwylele
2016-03-22implement accel and gyro backendwwylele
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-21session: Make helper functions constexprLioncash
2016-03-21loader: Make MakeMagic constexprLioncash
2016-03-21hle: Get rid of global access to g_rescheduleLioncash
This shouldn't be directly exposed if there's already a partial API that operates on it. We can just provide the rest of that API.
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-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-18Merge pull request #1505 from pippo2931/fefbunnei
GetArchiveResource stub
2016-03-17core/video_core: Make NumIds functions constexprLioncash
2016-03-17core/video_core: Don't cast away const in subscript operatorsLioncash
Not to say these subscript operators aren't totally ugly as is.
2016-03-15Reorganize the ndm service path for dummy implement functionJamePeng
SuspendDaemons , ResumeDaemons , OverrideDefaultDaemons The NDM file move to /core/hle/service/ndm/ now!
2016-03-13hid: fix pad updatewwylele
2016-03-12svc: Move ResetType enum to the kernel event headerLioncash
2016-03-12svc: Remove unused ArbitrationType enumLioncash
An equivalent enum already exists within address_arbiter.h
2016-03-12svc: Make ResetType an enum classLioncash
2016-03-12Fix headerpippo2931
2016-03-12GetArchiveResource stubpippo2931
2016-03-12Merge pull request #1266 from Subv/miiappletbunnei
HLE/Applets: Implemented a dummy Mii Selector applet.
2016-03-12HLE/Applets: Implemented a dummy Mii Selector applet.Subv
This prevents some games (like Super Mario 3D Land) from freezing when trying to launch it, however, it's not complete and won't let you go past Mii selection as the parameter structure hasn't been reverse engineered yet.
2016-03-12Merge pull request #1500 from lioncash/nullptrbunnei
gsp_gpu: Change 0 literal to nullptr
2016-03-11gsp_gpu: Change 0 literal to nullptrLioncash
2016-03-11hle: Update service function tablesLioncash
2016-03-09Fix missing returnLittleWhite
2016-03-09Merge pull request #1474 from lioncash/rendererbunnei
renderer_base: Minor changes