Add a hotkey for disabling the framelimit.

Atm this is hardcoded to '\t'.
This commit is contained in:
degasus
2014-02-16 23:13:01 +01:00
parent a40ea4e26a
commit 8483811b39
9 changed files with 27 additions and 8 deletions

View File

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