summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/applet_error.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-11-04general: Get the current process program id directly from the systemMorph1-2/+1
This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
2021-11-04general: Rename GetTitleID to GetProgramIDMorph1-1/+1
2021-08-19applet_error: Fix 64-bit error code conversionMorph1-6/+25
2021-07-14applets: Append applet_ prefix to backend appletsMorph1-1/+1
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-1/+1
Transition to PascalCase for result names.
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-1/+1
2021-04-26service: Eliminate cases of member shadowingLioncash1-3/+3
Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
2021-04-17applets: Send focus state change message on applet state changeMorph1-1/+1
Fixes the softlock after the controller applet exits in Mario Kart 8 Deluxe.
2021-04-17applets: Make the applet mode a protected property of AppletMorph1-1/+1
2021-04-15applets: Pass in the LibraryAppletMode each applet's constructorMorph1-2/+3
2021-01-15common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINITReinUsesLisp1-5/+5
INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior.
2020-12-08core: Remove unnecessary enum casts in log callsLioncash1-2/+2
Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts.
2020-11-27service: Eliminate usages of the global system instanceLioncash1-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.
2020-02-08hle: services: Use std::shared_ptr instead of copy by value.bunnei1-1/+1
2020-02-06am: Refactor IStorage interface.bunnei1-1/+1
2019-11-04common_func: Use std::array for INSERT_PADDING_* macros.bunnei1-5/+6
- Zero initialization here is useful for determinism.
2019-09-05service/am: Remove usages of global system accessorsLioncash1-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
2019-05-25applets/error: Save report on error appletZach Hilman1-5/+14
This matches official behavior with the erpt/eclct/eupld service chain.
2019-04-17web_browser: Make OpenPage non-constZach Hilman1-1/+6
2019-04-17main: Add GMainWindow hooks for Error displayZach Hilman1-2/+2
2019-04-17applets: Add Error appletZach Hilman1-0/+177
Responsible for displaying error codes and messages