ExecuteRaw: Pass in 0xBC... magic so Xenia will return to the guest caller.

This commit is contained in:
Dr. Chat 2015-12-01 16:46:38 -06:00 committed by Ben Vanik
parent 6d98628962
commit 38a09cbcc2
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ bool Processor::ExecuteRaw(ThreadState* thread_state, uint32_t address) {
}
auto context = thread_state->context();
return function->Call(thread_state, uint32_t(context->lr));
return function->Call(thread_state, 0xBCBCBCBC);
}
uint64_t Processor::Execute(ThreadState* thread_state, uint32_t address,