mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 03:00:38 +00:00
Disable interpolation for ramses head scene
This commit is contained in:
parent
6f9cdaccfc
commit
cb0e728722
1 changed files with 1 additions and 1 deletions
|
@ -1988,7 +1988,7 @@ static inline int32_t calc_smoothratio(ClockTicks totalclk, ClockTicks ototalclk
|
||||||
// {
|
// {
|
||||||
// return 65536;
|
// return 65536;
|
||||||
// }
|
// }
|
||||||
if (bRecord || bPlayback)
|
if (bRecord || bPlayback || nFreeze != 0)
|
||||||
return 65536;
|
return 65536;
|
||||||
int32_t rfreq = (refreshfreq != -1 ? refreshfreq : 60);
|
int32_t rfreq = (refreshfreq != -1 ? refreshfreq : 60);
|
||||||
uint64_t elapsedFrames = tabledivide64(((uint64_t) (totalclk - ototalclk).toScale16()) * rfreq, 65536*120);
|
uint64_t elapsedFrames = tabledivide64(((uint64_t) (totalclk - ototalclk).toScale16()) * rfreq, 65536*120);
|
||||||
|
|
Loading…
Reference in a new issue