summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2014-02-16 23:13:01 +0100
committerdegasus <wickmarkus@web.de>2014-04-30 12:50:53 +0200
commit8483811b398f9156a08565825cbf138cb3697039 (patch)
tree460b5d291303862722ee1b83acd9a6ea846faaa1 /Source/Core/VideoCommon/VideoConfig.cpp
parenta40ea4e26ace3a56c6bcc2f4dc2b075a3ecf0ae0 (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.cpp2
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;
}