diff options
author | negativeExponent | 2020-05-25 16:04:39 +0800 |
---|---|---|
committer | negativeExponent | 2020-05-25 16:06:14 +0800 |
commit | 1d579bf754d091727cb9b2ae0e6933b256739b59 (patch) | |
tree | 6e457d73b3f03823cadd80cbd51579757cb84166 | |
parent | 881977d12899fb99da181a0685ecb8f98cb23ed0 (diff) | |
download | pcsx_rearmed-1d579bf754d091727cb9b2ae0e6933b256739b59.tar.gz pcsx_rearmed-1d579bf754d091727cb9b2ae0e6933b256739b59.tar.bz2 pcsx_rearmed-1d579bf754d091727cb9b2ae0e6933b256739b59.zip |
Fix interpreter-only build (DYNAREC=0)
- For systems that can only run in interpreter mode for whatever reasons.
-rw-r--r-- | frontend/libretro.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c index 6e45e2f..ed39951 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -59,18 +59,6 @@ #define INTERNAL_FPS_SAMPLE_PERIOD 64 -#ifdef DRC_DISABLE -int stop; -u32 next_interupt; -u32 event_cycles[PSXINT_COUNT]; -int cycle_multiplier; -int new_dynarec_hacks; - -void new_dyna_before_save(void) {} -void new_dyna_after_save(void) {} -void new_dyna_freeze(void *f, int i) {} -#endif - //hack to prevent retroarch freezing when reseting in the menu but not while running with the hot key static int rebootemu = 0; |