Merge pull request #81 from degasus/skip_framelimit_hotkey

Add a hotkey for disabling the framelimit.
This commit is contained in:
Tony Wasserka
2014-05-01 12:40:01 +02:00
13 changed files with 38 additions and 38 deletions

View File

@ -276,5 +276,5 @@ void VideoConfig::Save(const std::string& ini_file)
bool VideoConfig::IsVSync()
{
return Core::isTabPressed ? false : bVSync;
return bVSync && !Core::GetIsFramelimiterTempDisabled();
}