File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,9 @@ m64p_error main_start(usf_state_t * state)
135
135
136
136
/* take the r4300 emulator mode from the config file at this point and cache it in a global variable */
137
137
#ifdef DEBUG_INFO
138
- state -> r4300emu = 0 ;
138
+ state -> r4300emu = CORE_PURE_INTERPRETER ;
139
139
#else
140
- state -> r4300emu = state -> enable_trimming_mode ? 0 : 2 ;
140
+ state -> r4300emu = state -> enable_trimming_mode ? CORE_PURE_INTERPRETER : CORE_DYNAREC ;
141
141
#endif
142
142
143
143
/* set some other core parameters based on the config file values */
Original file line number Diff line number Diff line change @@ -1168,7 +1168,7 @@ int init_memory(usf_state_t * state, uint32_t rdram_size)
1168
1168
map_region (state , 0xb000 + i , M64P_MEM_NOTHING , RW (nothing ));
1169
1169
}
1170
1170
1171
- state -> fast_memory = state -> enable_trimming_mode ? 0 : 1 ;
1171
+ state -> fast_memory = state -> enable_trimming_mode ? CORE_PURE_INTERPRETER : CORE_INTERPRETER ;
1172
1172
1173
1173
if (state -> g_rom && state -> g_rom_size >= 0xfc0 )
1174
1174
init_cic_using_ipl3 (state , & state -> g_si .pif .cic , state -> g_rom + 0x40 );
You can’t perform that action at this time.
0 commit comments