summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/error.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-1/+1
| | | | Transition to PascalCase for result names.
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-1/+1
|
* service: Eliminate cases of member shadowingLioncash2021-04-261-3/+3
| | | | | Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
* applets: Send focus state change message on applet state changeMorph2021-04-171-1/+1
| | | | Fixes the softlock after the controller applet exits in Mario Kart 8 Deluxe.
* applets: Make the applet mode a protected property of AppletMorph2021-04-171-1/+1
|
* applets: Pass in the LibraryAppletMode each applet's constructorMorph2021-04-151-2/+3
|
* common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINITReinUsesLisp2021-01-151-5/+5
| | | | INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior.
* core: Remove unnecessary enum casts in log callsLioncash2020-12-081-2/+2
| | | | | Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts.
* service: Eliminate usages of the global system instanceLioncash2020-11-271-2/+2
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* hle: services: Use std::shared_ptr instead of copy by value.bunnei2020-02-081-1/+1
|
* am: Refactor IStorage interface.bunnei2020-02-061-1/+1
|
* common_func: Use std::array for INSERT_PADDING_* macros.bunnei2019-11-041-5/+6
| | | | - Zero initialization here is useful for determinism.
* service/am: Remove usages of global system accessorsLioncash2019-09-051-3/+4
| | | | | | Avoids the use of global accessors, removing the reliance on global state. This also makes dependencies explicit in the interface, as opposed to being hidden
* applets/error: Save report on error appletZach Hilman2019-05-251-5/+14
| | | | This matches official behavior with the erpt/eclct/eupld service chain.
* web_browser: Make OpenPage non-constZach Hilman2019-04-171-1/+6
|
* main: Add GMainWindow hooks for Error displayZach Hilman2019-04-171-2/+2
|
* applets: Add Error appletZach Hilman2019-04-171-0/+177
Responsible for displaying error codes and messages