From d72948ca220210a522be19315cc11335d626f246 Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Sat, 15 Mar 2025 23:53:42 +0100 Subject: [PATCH] am: Fix force new 3ds deviceID --- src/core/hle/service/am/am.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index f9e31373d..d7a442c04 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -2481,7 +2481,7 @@ void Module::Interface::GetDeviceID(Kernel::HLERequestContext& ctx) { u32 deviceID = otp.GetDeviceID(); if (am->force_new_device_id) { - deviceID |= 0x800000000; + deviceID |= 0x80000000; } if (am->force_old_device_id) { deviceID &= ~0x80000000;