diff options
author | bunnei <bunneidev@gmail.com> | 2016-05-24 23:22:44 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-05-24 23:24:11 +0200 |
commit | c106f71bebdc6fffc03967f5a57618cfbe2ebaed (patch) | |
tree | b2a38b17a7ba306d97e90c3a0bf1a29cd8c841f8 /src/core/hle/service | |
parent | Merge pull request #1520 from JamePeng/checknew3ds (diff) | |
download | yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar.gz yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar.bz2 yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar.lz yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar.xz yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar.zst yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.zip |
Diffstat (limited to 'src/core/hle/service')
-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) { void CheckNew3DS(Service::Interface* self) { u32* cmd_buff = Kernel::GetCommandBuffer(); - const bool is_new_3ds = Settings::values.is_new3ds; + const bool is_new_3ds = Settings::values.is_new_3ds; if (is_new_3ds) { - LOG_CRITICAL(Service_PTM, "The option 'is_new3ds' is enabled as part of the 'System' settings. Citra does not fully support New3DS emulation yet!"); + 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!"); } cmd_buff[1] = RESULT_SUCCESS.raw; |