summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/service/common_state_getter.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-24 17:45:17 +0100
committerLiam <byteslice@airmail.cc>2024-02-25 04:25:34 +0100
commit692ba0fa7dc44631dd8866fb1d47b8c5a736a688 (patch)
tree197881ed0d461f00f76e0a3b4603737ab99a8b6a /src/core/hle/service/am/service/common_state_getter.cpp
parentMerge pull request #13155 from german77/GetSettingsItemValue (diff)
downloadyuzu-692ba0fa7dc44631dd8866fb1d47b8c5a736a688.tar
yuzu-692ba0fa7dc44631dd8866fb1d47b8c5a736a688.tar.gz
yuzu-692ba0fa7dc44631dd8866fb1d47b8c5a736a688.tar.bz2
yuzu-692ba0fa7dc44631dd8866fb1d47b8c5a736a688.tar.lz
yuzu-692ba0fa7dc44631dd8866fb1d47b8c5a736a688.tar.xz
yuzu-692ba0fa7dc44631dd8866fb1d47b8c5a736a688.tar.zst
yuzu-692ba0fa7dc44631dd8866fb1d47b8c5a736a688.zip
Diffstat (limited to 'src/core/hle/service/am/service/common_state_getter.cpp')
-rw-r--r--src/core/hle/service/am/service/common_state_getter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/service/common_state_getter.cpp b/src/core/hle/service/am/service/common_state_getter.cpp
index 548498e83..a32855ffa 100644
--- a/src/core/hle/service/am/service/common_state_getter.cpp
+++ b/src/core/hle/service/am/service/common_state_getter.cpp
@@ -260,9 +260,9 @@ Result ICommonStateGetter::GetAppletLaunchedHistory(
}
Result ICommonStateGetter::GetSettingsPlatformRegion(
- Out<SysPlatformRegion> out_settings_platform_region) {
+ Out<Set::PlatformRegion> out_settings_platform_region) {
LOG_INFO(Service_AM, "called");
- *out_settings_platform_region = SysPlatformRegion::Global;
+ *out_settings_platform_region = Set::PlatformRegion::Global;
R_SUCCEED();
}