mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Do not fast forward by default.
This commit is contained in:
parent
da4652aa2a
commit
3b39b6fcaa
@ -397,6 +397,16 @@ static void check_variables(CoreParameter &coreParam)
|
||||
}
|
||||
}
|
||||
|
||||
bool isFastForwarding = environ_cb(RETRO_ENVIRONMENT_GET_FASTFORWARDING, &isFastForwarding);
|
||||
if (isFastForwarding)
|
||||
{
|
||||
coreParam.fastForward = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
coreParam.fastForward = false;
|
||||
}
|
||||
|
||||
if (ppsspp_texture_scaling_type.Update(&g_Config.iTexScalingType) && gpu)
|
||||
gpu->ClearCacheNextFrame();
|
||||
|
||||
@ -683,7 +693,6 @@ bool retro_load_game(const struct retro_game_info *game)
|
||||
coreParam.startBreak = false;
|
||||
coreParam.printfEmuLog = true;
|
||||
coreParam.headLess = true;
|
||||
coreParam.fastForward = true;
|
||||
coreParam.graphicsContext = ctx;
|
||||
coreParam.gpuCore = ctx->GetGPUCore();
|
||||
coreParam.cpuCore = CPUCore::JIT;
|
||||
|
Loading…
Reference in New Issue
Block a user