aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service
Commit message (Collapse)AuthorAge
...
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* FileSys: De-inline Path membersGravatar Yuri Kunde Schlesner2015-05-06
|
* FileSys: Clean-up includes, de-inline destructorsGravatar Yuri Kunde Schlesner2015-05-06
|
* Services: Initialize all state variables at bootup.Gravatar bunnei2015-05-01
|
* Merge pull request #692 from purpasmart96/log_improvementsGravatar bunnei2015-04-28
|\ | | | | Services/Loader: Use more sensible log formats for certain functions along with more info being logged.
| * Services/Loader: Use more sensible log formats for certain functionsGravatar purpasmart962015-04-27
| | | | | | | | along with more info being logged.
* | ptm_sysm: Add static specifier to IsLegacyPowerOffGravatar Lioncash2015-04-24
| |
* | De-inline functions from Interface, removing them from service.hGravatar Yuri Kunde Schlesner2015-04-14
| | | | | | | | This reduces the time for a full recompile from 65.43s to 59.53s (~9%)
* | APT: (Subv) Fix bug where start event was being incorrectly signaled.Gravatar bunnei2015-04-09
|/
* Merge pull request #676 from purpasmart96/ir_service_refcGravatar bunnei2015-04-07
|\ | | | | IR: Move The IR services to their own folder and implement "GetHandles"
* | Clean-up mem_map constants and fix framebuffer translation errorsGravatar Yuri Kunde Schlesner2015-04-05
| |
| * IR: Move The IR services to their own folder and implement "GetHandles"Gravatar purpasmart962015-04-03
|/
* Services: Stubs and minor changesGravatar purpasmart962015-04-02
|
* Merge pull request #656 from Subv/nzGravatar bunnei2015-03-22
|\ | | | | Services/FS: Implemented DeleteExtSaveData, CreateSystemSaveData and Del...
| * Service/FS: Document and log some unknown values.Gravatar Subv2015-03-19
| | | | | | | | In CreateExtSaveData, DeleteExtSaveData and CreateSystemSaveData
* | Merge pull request #655 from purpasmart96/hid_fixesGravatar bunnei2015-03-17
|\ \ | | | | | | HID: Proper Signal Interrupts for EnableAccelerometer & EnableGyroscopeLow along with a stub for GetSoundVolume
| * | HID: Proper Signal Interrupts for EnableAccelerometer & EnableGyroscopeLow alongGravatar purpasmart962015-03-16
| | | | | | | | | | | | with a stub for GetSoundVolume
* | | arm_interface: Get rid of GetTicks.Gravatar Lioncash2015-03-16
|/ / | | | | | | Removes a TODO.
| * Services/FS: Implemented DeleteExtSaveData, CreateSystemSaveData and ↵Gravatar Subv2015-03-14
|/ | | | | | DeleteSystemSaveData Also fixed a bug with CreateExtSaveData that made it unable to create ExtSaveData archives in the SDMC directory.
* Merge pull request #642 from bunnei/touchpadGravatar bunnei2015-03-11
|\ | | | | Touchpad support
| * hid_user: Removed unnecessary includes.Gravatar bunnei2015-03-11
| |
| * HID: Removed unnecessary global variables.Gravatar bunnei2015-03-11
| |
| * HID: Added additional variable comments and some code cleanups.Gravatar bunnei2015-03-10
| |
| * HID: Complete refactor of pad/touch input to fix threading issues.Gravatar bunnei2015-03-10
| |
* | Merge pull request #629 from archshift/lcdfbGravatar bunnei2015-03-10
|\ \ | | | | | | Implement SetLcdForceBlack and add implementation for color filling in the GPU code
| | * HID: Cleanup how `next_touch_index` is calculated for Pad and touch.Gravatar bunnei2015-03-10
| | |
| | * HID: Changed TouchDataEntry `valid` to a BitField and added some doc strings.Gravatar bunnei2015-03-10
| | |
| | * HID: Added static asserts to check register position in shared memory.Gravatar bunnei2015-03-10
| | |
| | * HID: Added functions to emulate the touchpad.Gravatar bunnei2015-03-10
| | |
| | * HID: Moved some docstrings to the header.Gravatar bunnei2015-03-10
| | |
| | * HID: Refactored shared memory decoding for touchpad support.Gravatar bunnei2015-03-10
| |/ |/|
| * Added LCD registers, and implementation for color filling in OGL code.Gravatar archshift2015-03-09
| |
* | Merge pull request #589 from kevinhartman/config-errorsGravatar bunnei2015-03-09
|\ \ | | | | | | Fix errorcodes for bad config block request
| | * Implement SetLcdForceBlack, move register enum to hw.hGravatar archshift2015-03-05
| |/ |/|
* | Services: Moved the PTM and APT services to their own folderGravatar Subv2015-03-03
| | | | | | | | | | | | This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
* | Merge pull request #622 from Subv/titlesGravatar Yuri Kunde Schlesner2015-03-02
|\ \ | | | | | | Services/AM: Stubbed TitleIDListGetTotal and GetTitleIDList.
| * | Services/AM: Stubbed TitleIDListGetTotal and GetTitleIDList.Gravatar Subv2015-03-02
| | | | | | | | | | | | | | | They will always return 0 titles for every media type for now. This is needed to boot Home Menu further
* | | Merge pull request #623 from Subv/cardGravatar bunnei2015-03-01
|\ \ \ | | | | | | | | Services/FS: Stubbed CardSlotIsInserted to always return false
| * | | Services/FS: Stubbed CardSlotIsInserted to always return falseGravatar Subv2015-02-28
| |/ / | | | | | | | | | We won't be emulating this for the foreseeable future and it is needed for Home Menu to boot further
* / / Services/PTM: Stubbed PTM_Sysm::IsLegacyPowerOff.Gravatar Subv2015-02-28
|/ / | | | | | | This allows the Home Menu to boot further
* | Merge pull request #604 from Subv/arc_ssdGravatar Yuri Kunde Schlesner2015-02-25
|\ \ | | | | | | Archives: Properly implemented the SystemSaveData archive.
| * | Archives: Properly implemented the SystemSaveData archive.Gravatar Subv2015-02-25
| | | | | | | | | | | | Ported to the new factory pattern we have for archives.
* | | Services: Implemented Y2R_U::GetTransferEndEventGravatar Subv2015-02-24
|/ / | | | | | | Aero Porter was throwing an "Invalid Handle" fatal error without this.
* | Merge pull request #595 from linkmauve/new-3ds-inputGravatar bunnei2015-02-23
|\ \ | | | | | | Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.
* | | Added information reporting from ThrowFatalErrorGravatar archshift2015-02-22
| | | | | | | | | | | | This was RE'd from the errdisp applet.
| * | Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.Gravatar Emmanuel Gil Peyrot2015-02-22
|/ /
| * Fix error message for bad config block request.Gravatar Kevin Hartman2015-02-20
|/
* GPU: Properly implement memory fills.Gravatar Tony Wasserka2015-02-18
|
* Services: Fixed "Tried to connect to named port err:f".Gravatar Subv2015-02-16
| | | | err:f is a named port, not a service
* Merge pull request #529 from Subv/masterGravatar bunnei2015-02-14
|\ | | | | Build: Fixed some warnings