diff options
author | Liam <[email protected]> | 2024-02-11 19:31:01 -0500 |
---|---|---|
committer | Liam <[email protected]> | 2024-02-12 09:16:00 -0500 |
commit | 44e7e85f231b611130f71405b5258f5250e8785b (patch) | |
tree | 47b33fdb9a3f2eadf4e2fd920804b26ab0bd21cd /src/core/hle/service/am/applet.h | |
parent | af35057212949c4a1088157b4f2e6e592f23f5ee (diff) | |
download | yuzu-mainline-44e7e85f231b611130f71405b5258f5250e8785b.tar.gz yuzu-mainline-44e7e85f231b611130f71405b5258f5250e8785b.zip |
am: rewrite IApplicationFunctions
Diffstat (limited to 'src/core/hle/service/am/applet.h')
-rw-r--r-- | src/core/hle/service/am/applet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applet.h b/src/core/hle/service/am/applet.h index b29ecdfed..6c593ab1a 100644 --- a/src/core/hle/service/am/applet.h +++ b/src/core/hle/service/am/applet.h @@ -76,8 +76,8 @@ struct Applet { u32 application_core_usage_mode{}; // Application functions - bool gameplay_recording_supported{}; - GameplayRecordingState gameplay_recording_state{GameplayRecordingState::Disabled}; + bool game_play_recording_supported{}; + GamePlayRecordingState game_play_recording_state{GamePlayRecordingState::Disabled}; bool jit_service_launched{}; bool is_running{}; bool application_crash_report_enabled{}; |