diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/ptm/ptm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp index 3a0331ee1..e2c17d93b 100644 --- a/src/core/hle/service/ptm/ptm.cpp +++ b/src/core/hle/service/ptm/ptm.cpp | |||
| @@ -91,10 +91,10 @@ void IsLegacyPowerOff(Service::Interface* self) { | |||
| 91 | 91 | ||
| 92 | void CheckNew3DS(Service::Interface* self) { | 92 | void CheckNew3DS(Service::Interface* self) { |
| 93 | u32* cmd_buff = Kernel::GetCommandBuffer(); | 93 | u32* cmd_buff = Kernel::GetCommandBuffer(); |
| 94 | const bool is_new_3ds = Settings::values.is_new3ds; | 94 | const bool is_new_3ds = Settings::values.is_new_3ds; |
| 95 | 95 | ||
| 96 | if (is_new_3ds) { | 96 | if (is_new_3ds) { |
| 97 | LOG_CRITICAL(Service_PTM, "The option 'is_new3ds' is enabled as part of the 'System' settings. Citra does not fully support New3DS emulation yet!"); | 97 | LOG_CRITICAL(Service_PTM, "The option 'is_new_3ds' is enabled as part of the 'System' settings. Citra does not fully support New 3DS emulation yet!"); |
| 98 | } | 98 | } |
| 99 | 99 | ||
| 100 | cmd_buff[1] = RESULT_SUCCESS.raw; | 100 | cmd_buff[1] = RESULT_SUCCESS.raw; |