From cb0e728722b6698760cb0c193e2435f532874bd4 Mon Sep 17 00:00:00 2001 From: nukeykt Date: Tue, 5 Nov 2019 15:03:52 +0900 Subject: [PATCH] Disable interpolation for ramses head scene --- source/exhumed/src/exhumed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exhumed/src/exhumed.cpp b/source/exhumed/src/exhumed.cpp index e34f8e505..431570082 100644 --- a/source/exhumed/src/exhumed.cpp +++ b/source/exhumed/src/exhumed.cpp @@ -1988,7 +1988,7 @@ static inline int32_t calc_smoothratio(ClockTicks totalclk, ClockTicks ototalclk // { // return 65536; // } - if (bRecord || bPlayback) + if (bRecord || bPlayback || nFreeze != 0) return 65536; int32_t rfreq = (refreshfreq != -1 ? refreshfreq : 60); uint64_t elapsedFrames = tabledivide64(((uint64_t) (totalclk - ototalclk).toScale16()) * rfreq, 65536*120);