summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* core/hid: Move motion_input, create input converter and hid_typesGravatar german772021-11-246-0/+1164
|
* core/hid: Move input_interpreter to hidGravatar german772021-11-243-3/+3
|
* Merge pull request #7394 from Morph1984/svc-SetMemoryPermissionGravatar bunnei2021-11-225-12/+64
|\ | | | | kernel: svc: Implement SetProcessMemoryPermission
| * kernel: svc: Move all IsValid functions to an anonymous namespaceGravatar Morph2021-11-201-3/+15
| |
| * kernel: svc: Implement SetProcessMemoryPermissionGravatar Morph2021-11-201-1/+41
| | | | | | | | - Used by Skyline modding framework
| * kernel: KPageTable: Rename SetCodeMemoryPermission to SetProcessMemoryPermissionGravatar Morph2021-11-204-8/+8
| |
* | arm: dynarmic: Cleanup icache op handlingGravatar jam1garner2021-11-211-10/+9
| |
* | arm: dynarmic: Implement icache op handling for 'ic iallu' instructionGravatar jam1garner2021-11-211-0/+3
| |
* | arm: dynarmic: Implement icache op handling for 'ic ivau' instructionGravatar jam1garner2021-11-211-0/+18
| |
* | Merge pull request #7389 from ameerj/screenshot-1xGravatar bunnei2021-11-212-11/+7
|\ \ | | | | | | Fix screenshot dimensions when at 1x scale
| * | Fix screenshot dimensions when at 1x scaleGravatar ameerj2021-11-202-11/+7
| |/ | | | | | | | | | | | | This was regressed by ART. Prior to ART, the screenshots were saved at the title's framebuffer resolution. A misunderstanding of the existing logic led to screenshot dimensions becoming dependent on the host render window size. This changes the behavior to match how it was prior to ART at 1x, with screenshots now always being the title's framebuffer dimensions scaled by the resolution scaling factor.
* | Merge pull request #7359 from heinermann/kthread_crashGravatar bunnei2021-11-201-8/+14
|\ \ | | | | | | Fix crash on exit due to static scoped dummy threads
| * | Fix crash on exit due to static scoped dummy threadsGravatar Adam Heinermann2021-11-171-8/+14
| |/
* | service: pm: Implement AtmosphereGetProcessIdGravatar Morph2021-11-201-0/+24
| | | | | | | | - Used by Skyline modding framework
* | service: pm: Add all relevant result codesGravatar Morph2021-11-201-3/+8
| |
* | service: pm: Rename title id to program idGravatar Morph2021-11-201-6/+6
|/
* bootmanager: Fix screenshot resolution factor usageGravatar ameerj2021-11-162-10/+7
| | | | Fixes screenshots at non integer scaling
* Settings: eliminate rescaling_factor.Gravatar Fernando Sahmkow2021-11-163-29/+12
|
* program_metadata: Add default ThreadInfo kernel capabilityGravatar OatmealDome2021-11-101-1/+4
|
* applets/swkbd: Fix text check message encodingGravatar Morph2021-11-081-7/+15
| | | | The text check message can be encoded in UTF-8.
* applets/swkbd: Skip text checking if the text has been confirmedGravatar Morph2021-11-084-13/+21
| | | | | | | 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
* service/pctl: Stub EndFreeCommunicationGravatar Narr the Reg2021-11-051-1/+8
| | | - Used by Just Dance 2022
* Merge pull request #7279 from Morph1984/system-get-program-idGravatar Morph2021-11-0422-53/+44
|\ | | | | general: Get the current process program id directly from the system
| * general: Get the current process program id directly from the systemGravatar Morph2021-11-0418-50/+38
| | | | | | | | This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
| * general: Rename GetTitleID to GetProgramIDGravatar Morph2021-11-0421-39/+42
| |
* | Merge pull request #7289 from ameerj/perf-stat-shutdownGravatar Morph2021-11-041-1/+1
|\ \ | | | | | | core: Reorder perf_stats destruction order on Shutdown
| * | core: Reorder perf_stats destruction order on ShutdownGravatar ameerj2021-11-041-1/+1
| |/ | | | | | | Avoids the gpu_core using perf_stats after it's been freed.
* | Merge pull request #7287 from Morph1984/stub-aocGravatar Fernando S2021-11-052-0/+29
|\ \ | |/ |/| service: aoc: Stub more 13.x functions used by Animal Crossing
| * service: aoc: Stub NotifyUnmountAddOnContentGravatar Morph2021-11-042-1/+9
| | | | | | | | Used by Animal Crossing: New Horizons v2.0.0 DLC
| * service: aoc: Stub NotifyMountAddOnContent and NotifyMountAddOnContentGravatar Morph2021-11-042-0/+21
| | | | | | | | Used by Animal Crossing: New Horizons v2.0.0 DLC
* | Merge pull request #7282 from ameerj/core-includesGravatar bunnei2021-11-04134-219/+8
|\ \ | |/ |/| core: Reduce unused header includes
| * core: Fix transitive include build errorsGravatar ameerj2021-11-035-0/+9
| |
| * core: Remove unused includesGravatar ameerj2021-11-03133-221/+1
| |
* | service/acc: Rename Unknown160 to InitializeApplicationInfoV2Gravatar german772021-11-043-3/+3
| |
* | service: acc: Stub acc:u0 '160'Gravatar Morph2021-11-043-0/+9
|/ | | | | | - Used by Animal Crossing: New Horizons v2.0.0 Since the name is currently unknown, '160' is used as a placeholder.
* svc: Correct WaitSynchronization num_handles param typeGravatar Morph2021-11-022-4/+4
| | | | num_handles is a s32
* general: Remove MakeResult helpersGravatar Morph2021-11-0213-69/+48
| | | | This is made obsolete by the presence of implicit constructors.
* hle/result: Amend ResultVal documentationGravatar Morph2021-11-021-12/+10
| | | | This amends the documentation slightly to reflect the updated interface.
* hle/result: Reimplement ResultVal using Common::ExpectedGravatar Morph2021-11-021-117/+63
| | | | | 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.
* Merge pull request #7227 from vonchenplus/fix_memory_leak_v2Gravatar bunnei2021-11-016-24/+54
|\ | | | | Fix memory leak v2
| * Fix dangling kernel objects when exitingGravatar Feng Chen2021-10-272-11/+13
| |
| * Revert PR7009Gravatar Feng Chen2021-10-272-15/+5
| |
| * Fix memory leakGravatar Feng Chen2021-10-274-0/+38
| |
* | Merge pull request #7244 from Morph1984/application-lang-pt-brGravatar bunnei2021-10-294-3/+30
|\ \ | | | | | | file_sys/ns: Add Brazilian Portuguese to the list of ApplicationLanguage
| * | file_sys: control_metadata: Add BrazilianPortugueseGravatar Morph2021-10-282-2/+4
| | |
| * | ns: language: Add BrazilianPortuguese to ApplicationLanguageGravatar Morph2021-10-282-1/+26
| | | | | | | | | | | | It seems that Nintendo finally filled that last empty spot in ApplicationLanguage for a total of 16 supported languages.
* | | Merge pull request #7240 from Morph1984/resultval-remove-cvGravatar bunnei2021-10-291-2/+2
|\ \ \ | | | | | | | | hle/result: Remove cv-qualifiers from Arg in MakeResult
| * | | hle/result: Remove cv-qualifiers from Arg in MakeResultGravatar Morph2021-10-281-2/+2
| | |/ | |/| | | | | | | 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.
* | | hle/result: Declare copy/move constructor/assignment as noexceptGravatar Morph2021-10-281-3/+3
| | | | | | | | | | | | While we're at it, we can also declare these copy/move constructor/assignment as noexcept.
* | | hle/result: Add move assignment operator in ResultValGravatar Morph2021-10-281-0/+20
| |/ |/| | | | | ResultVal was missing a move assignment operator, add it.