From 38a09cbcc2848dac3d94c2348516a0a1049b089b Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Tue, 1 Dec 2015 16:46:38 -0600 Subject: [PATCH] ExecuteRaw: Pass in 0xBC... magic so Xenia will return to the guest caller. --- src/xenia/cpu/processor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/cpu/processor.cc b/src/xenia/cpu/processor.cc index 77999f305..d4c5aa535 100644 --- a/src/xenia/cpu/processor.cc +++ b/src/xenia/cpu/processor.cc @@ -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,