diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-20 04:21:17 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-20 04:21:17 +0200 |
commit | 0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9 (patch) | |
tree | 251c47456598ee0d1e097251232c7b0dc49ea28d /src/core/hle/service | |
parent | thread: added declaration for __KernelReschedule to be used by syscall module (diff) | |
download | yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar.gz yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar.bz2 yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar.lz yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar.xz yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.tar.zst yuzu-0886dc70ed3eb3c30fcbe0039d53a5c780a6c4b9.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/apt.cpp | 2 |
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) { // 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[] = { |