am: Fix force new 3ds deviceID
Some checks failed
citra-build / source (push) Has been cancelled
citra-build / linux (appimage) (push) Has been cancelled
citra-build / linux (fresh) (push) Has been cancelled
citra-build / macos (arm64) (push) Has been cancelled
citra-build / macos (x86_64) (push) Has been cancelled
citra-build / windows (msvc) (push) Has been cancelled
citra-build / windows (msys2) (push) Has been cancelled
citra-build / android (push) Has been cancelled
citra-build / ios (push) Has been cancelled
citra-format / clang-format (push) Has been cancelled
citra-transifex / transifex (push) Has been cancelled
citra-build / macos-universal (push) Has been cancelled

This commit is contained in:
PabloMK7 2025-03-15 23:53:42 +01:00 committed by OpenSauce
parent ccb26303ad
commit d72948ca22

View File

@ -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;