Fix output FPS not using fractional factor

This commit is contained in:
n00mkrad
2022-04-22 10:34:59 +02:00
parent 51cd146882
commit dadf2193be
3 changed files with 9 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ namespace Flowframes
inFpsDetected = inFpsDetectedArg;
inFps = inFpsArg;
interpFactor = interpFactorArg;
outFps = inFpsArg * (long)interpFactorArg;
outFps = inFpsArg * (double)interpFactorArg;
outItsScale = itsScale;
outMode = outModeArg;
model = modelArg;