diff options
| author | degasus <wickmarkus@web.de> | 2014-02-16 23:13:01 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2014-04-30 12:50:53 +0200 |
| commit | 8483811b398f9156a08565825cbf138cb3697039 (patch) | |
| tree | 460b5d291303862722ee1b83acd9a6ea846faaa1 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | a40ea4e26ace3a56c6bcc2f4dc2b075a3ecf0ae0 (diff) | |
Add a hotkey for disabling the framelimit.
Atm this is hardcoded to '\t'.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index c12fe9b419..7eb6835747 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -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; } |
