From 3ff4ec275ae931dfc946cdb09825efa7b9e60d18 Mon Sep 17 00:00:00 2001 From: degasus Date: Wed, 16 Dec 2015 00:10:47 +0100 Subject: Throttler: Rename "framelimiter" to "emulation speed". We don't throttle by frames, we throttle by coretiming speed. So looking up VI for calculating the speed was just very wrong. The new ini option is a float, 1.0f for fullspeed. In the GUI, percentual values are used. --- Source/Core/VideoCommon/VideoConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/VideoConfig.cpp') diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 5e3c468d21..626e1f0bd0 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -311,5 +311,5 @@ void VideoConfig::Save(const std::string& ini_file) bool VideoConfig::IsVSync() { - return bVSync && !Core::GetIsFramelimiterTempDisabled(); + return bVSync && !Core::GetIsThrottlerTempDisabled(); } -- cgit v1.2.3