mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Review style fixes.
This commit is contained in:
parent
c593da050c
commit
feade27cd3
1 changed files with 2 additions and 9 deletions
|
@ -401,14 +401,7 @@ static void check_variables(CoreParameter &coreParam)
|
|||
}
|
||||
|
||||
bool isFastForwarding = environ_cb(RETRO_ENVIRONMENT_GET_FASTFORWARDING, &isFastForwarding);
|
||||
if (isFastForwarding)
|
||||
{
|
||||
coreParam.fastForward = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
coreParam.fastForward = false;
|
||||
}
|
||||
coreParam.fastForward = isFastForwarding;
|
||||
|
||||
if (ppsspp_texture_scaling_type.Update(&g_Config.iTexScalingType) && gpu)
|
||||
gpu->ClearCacheNextFrame();
|
||||
|
@ -490,7 +483,7 @@ void retro_init(void)
|
|||
|
||||
VFSRegister("", new DirectoryAssetReader(retro_base_dir));
|
||||
|
||||
host = new LibretroHost;
|
||||
host = new LibretroHost();
|
||||
}
|
||||
|
||||
void retro_deinit(void)
|
||||
|
|
Loading…
Add table
Reference in a new issue