Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-08 | applets/swkbd: Skip text checking if the text has been confirmed | Morph | |
Confirm means that the text has already been checked by the application to be correct, but is asking the user for confirmation. The confirmation text itself seems to be corrupted though, this needs to be investigated. Fixes the software keyboard in Famicom Detective Club: The Missing Heir | |||
2021-11-05 | service/pctl: Stub EndFreeCommunication | Narr the Reg | |
- Used by Just Dance 2022 | |||
2021-11-04 | Merge pull request #7279 from Morph1984/system-get-program-id | Morph | |
general: Get the current process program id directly from the system | |||
2021-11-04 | Merge pull request #7289 from ameerj/perf-stat-shutdown | Morph | |
core: Reorder perf_stats destruction order on Shutdown | |||
2021-11-04 | core: Reorder perf_stats destruction order on Shutdown | ameerj | |
Avoids the gpu_core using perf_stats after it's been freed. | |||
2021-11-05 | Merge pull request #7287 from Morph1984/stub-aoc | Fernando S | |
service: aoc: Stub more 13.x functions used by Animal Crossing | |||
2021-11-04 | general: Get the current process program id directly from the system | Morph | |
This allows us to avoid including KProcess' header file in files that only need to get the current process' program id. | |||
2021-11-04 | general: Rename GetTitleID to GetProgramID | Morph | |
2021-11-04 | Merge pull request #7282 from ameerj/core-includes | bunnei | |
core: Reduce unused header includes | |||
2021-11-04 | service: aoc: Stub NotifyUnmountAddOnContent | Morph | |
Used by Animal Crossing: New Horizons v2.0.0 DLC | |||
2021-11-04 | service: aoc: Stub NotifyMountAddOnContent and NotifyMountAddOnContent | Morph | |
Used by Animal Crossing: New Horizons v2.0.0 DLC | |||
2021-11-04 | service/acc: Rename Unknown160 to InitializeApplicationInfoV2 | german77 | |
2021-11-04 | service: acc: Stub acc:u0 '160' | Morph | |
- Used by Animal Crossing: New Horizons v2.0.0 Since the name is currently unknown, '160' is used as a placeholder. | |||
2021-11-03 | core: Fix transitive include build errors | ameerj | |
2021-11-03 | core: Remove unused includes | ameerj | |
2021-11-02 | svc: Correct WaitSynchronization num_handles param type | Morph | |
num_handles is a s32 | |||
2021-11-02 | general: Remove MakeResult helpers | Morph | |
This is made obsolete by the presence of implicit constructors. | |||
2021-11-02 | hle/result: Amend ResultVal documentation | Morph | |
This amends the documentation slightly to reflect the updated interface. | |||
2021-11-02 | hle/result: Reimplement ResultVal using Common::Expected | Morph | |
Common::Expected effectively provides the same functions as ResultVal, so we can implement it with this. This can be replaced with std::expected with minimal effort should it be standardized in the C++ Standard Template Library. | |||
2021-11-01 | Merge pull request #7227 from vonchenplus/fix_memory_leak_v2 | bunnei | |
Fix memory leak v2 | |||
2021-10-29 | Merge pull request #7244 from Morph1984/application-lang-pt-br | bunnei | |
file_sys/ns: Add Brazilian Portuguese to the list of ApplicationLanguage | |||
2021-10-29 | Merge pull request #7240 from Morph1984/resultval-remove-cv | bunnei | |
hle/result: Remove cv-qualifiers from Arg in MakeResult | |||
2021-10-28 | file_sys: control_metadata: Add BrazilianPortuguese | Morph | |
2021-10-28 | ns: language: Add BrazilianPortuguese to ApplicationLanguage | Morph | |
It seems that Nintendo finally filled that last empty spot in ApplicationLanguage for a total of 16 supported languages. | |||
2021-10-28 | hle/result: Declare copy/move constructor/assignment as noexcept | Morph | |
While we're at it, we can also declare these copy/move constructor/assignment as noexcept. | |||
2021-10-28 | hle/result: Add move assignment operator in ResultVal | Morph | |
ResultVal was missing a move assignment operator, add it. | |||
2021-10-28 | hle/result: Remove cv-qualifiers from Arg in MakeResult | Morph | |
This removes the const qualification for types when MakeResult(arg) is used in a const member function, allowing for automatic deduction and removing the need to manually specify the non-const type as the template argument. | |||
2021-10-27 | Fix dangling kernel objects when exiting | Feng Chen | |
2021-10-27 | Revert PR7009 | Feng Chen | |
2021-10-27 | Fix memory leak | Feng Chen | |
2021-10-25 | Merge pull request #7193 from FernandoS27/idle | Morph | |
SVC: Implement svcInfo:IdleTickCount | |||
2021-10-24 | Merge pull request #7218 from bylaws/aswdqdsam | Ameer J | |
Fixup channel submit IOCTL syncpoint parameters | |||
2021-10-24 | Fixed ARM_Dynamic_64 Step | Andrew Strelsky | |
2021-10-24 | Fixup channel submit IOCTL syncpoint parameters | Billy Laws | |
The current arguments worked by happenstance as games only ever submit one syncpoint and request one fence back, if a game were to do something other than this then the arguments would've been parsed entirely wrong. | |||
2021-10-19 | Merge pull request #7198 from ameerj/settings-chrono | bunnei | |
settings: Remove std::chrono usage | |||
2021-10-17 | Merge pull request #7173 from Morph1984/invalidate-unmap | bunnei | |
KPageTable: Perform ranged invalidation when unmapping code memory | |||
2021-10-17 | settings: Remove std::chrono usage | ameerj | |
Alleviates the dependency on chrono for all files that include settings.h | |||
2021-10-16 | SVC: Implement svcInfo:IdleTickCount | Fernando Sahmkow | |
Used by the Witcher 3 | |||
2021-10-15 | Merge pull request #7187 from FernandoS27/boy-i-say-boy | bunnei | |
NVHost_Ctrl: Force wait if the gpu falls behind too long. | |||
2021-10-15 | service/vi: Stub IHOSBinderDriver::TransactParcel GetBufferHistory (#7184) | Feng Chen | |
2021-10-16 | NvHost/Core: Address Feedback. | Fernando Sahmkow | |
2021-10-16 | Suspend temporally | FernandoS27 | |
2021-10-16 | NVHost_Ctrl: Force wait if the gpu falls behind too long. | FernandoS27 | |
2021-10-15 | core: Move ResultStatus outside of System | Morph | |
Allows it to be a forward declaration in other header files. | |||
2021-10-15 | core: Remove static system instance | Morph | |
2021-10-13 | KPageTable: Perform ranged invalidation when unmapping code memory | Morph | |
Co-Authored-By: Fernando S. <1731197+FernandoS27@users.noreply.github.com> | |||
2021-10-11 | Merge pull request #7110 from vonchenplus/fix_extract_offline_romefs_error | Morph | |
applets/web: Fallback to loader to get the manual romfs if none is found | |||
2021-10-11 | applets/web: Fallback to loader to get the manual romfs if none is found | Feng Chen | |
2021-10-07 | kernel: hle_ipc: Foward declare KAutoObject | Morph | |
2021-10-07 | service: Reduce header include overhead | Morph | |