summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-19 22:21:17 -0400
committerGravatar bunnei2014-05-19 22:21:17 -0400
commit0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9 (patch)
tree251c47456598ee0d1e097251232c7b0dc49ea28d /src
parentthread: added declaration for __KernelReschedule to be used by syscall module (diff)
downloadyuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar.gz
yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar.xz
yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/apt.cpp2
1 files changed, 1 insertions, 1 deletions
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) {
23 23
24 // TODO: This should be an actual mutex handle. Games will check that this is not non-zero 24 // TODO: This should be an actual mutex handle. Games will check that this is not non-zero
25 // (NULL), and fail if such. A faked non-zero value will at least enable further booting. 25 // (NULL), and fail if such. A faked non-zero value will at least enable further booting.
26 cmd_buff[5] = 0xDEADBEEF; 26 cmd_buff[5] = 0x12345678;
27} 27}
28 28
29const Interface::FunctionInfo FunctionTable[] = { 29const Interface::FunctionInfo FunctionTable[] = {