diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp
index ddb975607c4845c0c2d8e689381916197379d96f..1f6a70eab9b049e1d3cca44e6fbbededc2c7b74e 100644
--- a/src/core/hle/service/apt.cpp
+++ b/src/core/hle/service/apt.cpp
@@ -23,7 +23,7 @@ void GetLockHandle(Service::Interface* self) {
 
     // TODO: This should be an actual mutex handle. Games will check that this is not non-zero 
     // (NULL), and fail if such. A faked non-zero value will at least enable further booting. 
-    cmd_buff[5] = 0xDEADBEEF;
+    cmd_buff[5] = 0x12345678;
 }
 
 const Interface::FunctionInfo FunctionTable[] = {