FMV_SpeedUp_100%

This commit is contained in:
2 2017-10-12 20:49:20 +01:00 committed by citra
parent 0de94f3631
commit c1cfbf5a85
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ void ARM_Dynarmic::ExecuteInstructions(int num_instructions) {
std::size_t ticks_executed = jit->Run(static_cast<unsigned>(num_instructions));
CoreTiming::AddTicks(ticks_executed);
CoreTiming::AddTicks(4000);
}
void ARM_Dynarmic::SaveContext(ARM_Interface::ThreadContext& ctx) {

View File

@ -84,7 +84,7 @@ void ARM_DynCom::ExecuteInstructions(int num_instructions) {
// executing one instruction at a time. Otherwise, if a block is being executed, more
// instructions may actually be executed than specified.
unsigned ticks_executed = InterpreterMainLoop(state.get());
CoreTiming::AddTicks(ticks_executed);
CoreTiming::AddTicks(4000);
}
void ARM_DynCom::SaveContext(ThreadContext& ctx) {