From 0000750527c9e48febda186cfb358f356178cf1d Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 17 Jul 2021 20:09:29 +1000 Subject: [PATCH] System: Fix rewind rate with vsync off --- src/core/system.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/system.cpp b/src/core/system.cpp index 5628c1f3c..e24835af5 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -2401,6 +2401,8 @@ void DoRewind() { s_rewind_load_counter--; } + + s_next_frame_time += s_frame_period; } void SaveRunaheadState()