From 0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 19 May 2014 22:21:17 -0400 Subject: [PATCH] apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a magic value in other places) so that I can track how it propagates through the app code --- src/core/hle/service/apt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp index ddb975607..1f6a70eab 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[] = {