summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ptm/ptm.cpp4
-rw-r--r--src/core/settings.h2
2 files changed, 3 insertions, 3 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;
diff --git a/src/core/settings.h b/src/core/settings.h
index a61f25cbe..ea72f4d9c 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -42,7 +42,7 @@ static const std::array<Values, NUM_INPUTS> All = {{
struct Values {
// CheckNew3DS
- bool is_new3ds;
+ bool is_new_3ds;
// Controls
std::array<int, NativeInput::NUM_INPUTS> input_mappings;