From 82731290ee4e162fb040ee34337405e544e2e0ac Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 10 Dec 2014 17:27:18 +0100 Subject: We don't need to get rid of idle loop patching for non-dynarec core --- libretro.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libretro.c') diff --git a/libretro.c b/libretro.c index c753f01..7f1e299 100644 --- a/libretro.c +++ b/libretro.c @@ -22,6 +22,11 @@ static cothread_t main_thread; static cothread_t cpu_thread; int dynarec_enable; +u32 idle_loop_target_pc = 0xFFFFFFFF; +u32 iwram_stack_optimize = 1; +u32 translation_gate_target_pc[MAX_TRANSLATION_GATES]; +u32 translation_gate_targets = 0; + void switch_to_main_thread(void) { co_switch(main_thread); -- cgit v1.2.3