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
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;
}