mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 08:37:52 +00:00
New3DS: Minor style cleanup to #1520.
This commit is contained in:
parent
a465aaaa54
commit
588e3c253f
4 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue