Morph
9173f07a51
service: pm: Implement AtmosphereGetProcessId
- Used by Skyline modding framework
4 years ago
Morph
3dc38d185b
service: pm: Add all relevant result codes
4 years ago
Morph
40cd0bb97b
service: pm: Rename title id to program id
4 years ago
ameerj
80f8d4989e
bootmanager: Fix screenshot resolution factor usage
Fixes screenshots at non integer scaling
4 years ago
Fernando Sahmkow
71ca84d829
Settings: eliminate rescaling_factor.
5 years ago
OatmealDome
50acc0da20
program_metadata: Add default ThreadInfo kernel capability
4 years ago
Morph
3af2117c88
applets/swkbd: Fix text check message encoding
The text check message can be encoded in UTF-8.
4 years ago
Morph
1af499c15b
applets/swkbd: Skip text checking if the text has been confirmed
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
4 years ago
Narr the Reg
ced1302975
service/pctl: Stub EndFreeCommunication
- Used by Just Dance 2022
4 years ago
ameerj
0cf78a34ba
core: Reorder perf_stats destruction order on Shutdown
Avoids the gpu_core using perf_stats after it's been freed.
4 years ago
Morph
a6e6a5ac38
general: Get the current process program id directly from the system
This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
4 years ago
Morph
64275dfbf4
general: Rename GetTitleID to GetProgramID
4 years ago
Morph
21c1316503
service: aoc: Stub NotifyUnmountAddOnContent
Used by Animal Crossing: New Horizons v2.0.0 DLC
4 years ago
Morph
ef427e4cb0
service: aoc: Stub NotifyMountAddOnContent and NotifyMountAddOnContent
Used by Animal Crossing: New Horizons v2.0.0 DLC
4 years ago
german77
bee6b71553
service/acc: Rename Unknown160 to InitializeApplicationInfoV2
4 years ago
Morph
f2988ecabc
service: acc: Stub acc:u0 '160'
- Used by Animal Crossing: New Horizons v2.0.0
Since the name is currently unknown, '160' is used as a placeholder.
4 years ago
ameerj
b275f2e475
core: Fix transitive include build errors
4 years ago
ameerj
7c4b6aab2e
core: Remove unused includes
4 years ago
Morph
b871388a31
svc: Correct WaitSynchronization num_handles param type
num_handles is a s32
4 years ago
Morph
cb09ea0f01
general: Remove MakeResult helpers
This is made obsolete by the presence of implicit constructors.
4 years ago
Morph
98b351758c
hle/result: Amend ResultVal documentation
This amends the documentation slightly to reflect the updated interface.
4 years ago
Morph
52e52924bb
hle/result: Reimplement ResultVal using Common::Expected
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.
4 years ago
Morph
baf599c1d3
file_sys: control_metadata: Add BrazilianPortuguese
4 years ago
Morph
e4052a1dab
ns: language: Add BrazilianPortuguese to ApplicationLanguage
It seems that Nintendo finally filled that last empty spot in ApplicationLanguage for a total of 16 supported languages.
4 years ago
Morph
1b5c37fa29
hle/result: Declare copy/move constructor/assignment as noexcept
While we're at it, we can also declare these copy/move constructor/assignment as noexcept.
4 years ago
Morph
189927c237
hle/result: Add move assignment operator in ResultVal
ResultVal was missing a move assignment operator, add it.
4 years ago
Morph
1ff9ad4e7c
hle/result: Remove cv-qualifiers from Arg in MakeResult
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.
4 years ago
Feng Chen
dd29285e35
Fix dangling kernel objects when exiting
4 years ago
Feng Chen
052017e189
Revert PR7009
4 years ago
Feng Chen
a8b0104923
Fix memory leak
4 years ago
Andrew Strelsky
31b9797296
Fixed ARM_Dynamic_64 Step
4 years ago
Billy Laws
2dbef58eeb
Fixup channel submit IOCTL syncpoint parameters
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.
4 years ago
ameerj
ef811c6425
settings: Remove std::chrono usage
Alleviates the dependency on chrono for all files that include settings.h
4 years ago
Fernando Sahmkow
da6673e79a
SVC: Implement svcInfo:IdleTickCount
Used by the Witcher 3
4 years ago
Feng Chen
de81571289
service/vi: Stub IHOSBinderDriver::TransactParcel GetBufferHistory ( #7184 )
4 years ago
Fernando Sahmkow
53cf91d151
NvHost/Core: Address Feedback.
4 years ago
FernandoS27
198c6ad0d7
Suspend temporally
4 years ago
FernandoS27
7dca0bc11d
NVHost_Ctrl: Force wait if the gpu falls behind too long.
4 years ago
Morph
17763a44d5
core: Move ResultStatus outside of System
Allows it to be a forward declaration in other header files.
4 years ago
Morph
b6719094e6
core: Remove static system instance
4 years ago
Morph
50384e2619
KPageTable: Perform ranged invalidation when unmapping code memory
Co-Authored-By: Fernando S. <1731197+FernandoS27@users.noreply.github.com>
4 years ago
Feng Chen
0ee2185c59
applets/web: Fallback to loader to get the manual romfs if none is found
4 years ago
Morph
bea7824bd1
kernel: hle_ipc: Foward declare KAutoObject
4 years ago
Morph
7bb2dd75cd
service: Reduce header include overhead
4 years ago
ameerj
71e19153ef
nvflinger: Use jthread and stop_token for VSync thread
Avoids a destruction data race that may occur on the vsync thread
4 years ago
ameerj
6c0d902373
nvhost_ctrl: Refactor usage of gpu.LockSync()
This seems to only be used to protect a later gpu function call. So we can move the lock into that call instead.
4 years ago
ameerj
427bf76e62
gpu: Migrate implementation to the cpp file
4 years ago
Morph
2f5808b7ff
service: am: Make use of Exit to exit the currently running application
This also moves the call to the end to ensure services are properly destructed on exit.
4 years ago
Morph
d8467ca6c0
core: Add Exit and ExitCallback
This allows ISelfController::Exit to stop the currently running application. This is typically used by homebrew to exit back to the homebrew menu after calling consoleExit with libnx.
4 years ago
Morph
fadcee14f8
service: Replace service event creation with ServiceContext::CreateEvent
The service context helps to manage all created events and allows us to close them upon destruction.
4 years ago