Statistics: Posted by ozonex — 27 Feb 2019, 13:15
Statistics: Posted by Destructor — 06 Jan 2019, 22:43
function AdjustFrameRate()
if options.vsync == 1 then return end
local video = options.video
local fps = 100
if type(options.primary_adapter) == 'string' then
local data = utils.StringSplit(options.primary_adapter, ',')
local hz = tonumber(data[3])
if hz then
fps = math.max(60, hz)
end
end
ConExecute("SC_FrameTimeClamp " .. (1000 / fps))
end
if options.vsync == 1 then return end
local fps = 100
local data = utils.StringSplit(options.primary_adapter, ',')
local hz = tonumber(data[3])
fps = math.max(60, hz)
ConExecute("SC_FrameTimeClamp " .. (1000 / fps))
Statistics: Posted by Uveso — 02 Jan 2019, 00:58
Statistics: Posted by Destructor — 01 Jan 2019, 22:26
local fps = 30
ConExecute("SC_FrameTimeClamp " .. (1000 / fps))
SC_FrameTimeClamp 33.33
Statistics: Posted by Uveso — 30 Dec 2018, 06:43
Statistics: Posted by Destructor — 29 Dec 2018, 04:48