Skip to content
Snippets Groups Projects
Commit 0886dc70 authored by bunnei's avatar bunnei
Browse files

apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a...

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
parent f5a119a3
No related branches found
No related tags found
No related merge requests found
......@@ -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[] = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment