[Scummvm-git-logs] scummvm master -> bb58e6b647b04f765bd7b67206cd56bcf72e1584
whoozle
noreply at scummvm.org
Tue Mar 10 01:57:19 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
bb58e6b647 PHOENIXVR: fixup for missing vertical interpolate
Commit: bb58e6b647b04f765bd7b67206cd56bcf72e1584
https://github.com/scummvm/scummvm/commit/bb58e6b647b04f765bd7b67206cd56bcf72e1584
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-03-10T01:56:22Z
Commit Message:
PHOENIXVR: fixup for missing vertical interpolate
Changed paths:
engines/phoenixvr/phoenixvr.cpp
diff --git a/engines/phoenixvr/phoenixvr.cpp b/engines/phoenixvr/phoenixvr.cpp
index 3ad44115e21..a2cc6a82a8f 100644
--- a/engines/phoenixvr/phoenixvr.cpp
+++ b/engines/phoenixvr/phoenixvr.cpp
@@ -233,7 +233,7 @@ void PhoenixVREngine::interpolateAngle(float x, float y, float speed, float zoom
// angles are animated using square function, zoom is linear
auto t2 = t1 * t1;
- setAngle(x0 + 0 * dx, y0 + t2 * dy);
+ setAngle(x0 + t2 * dx, y0 + t2 * dy);
if (zoom > 0) {
setZoom(z0 + t1 * dz);
}
More information about the Scummvm-git-logs
mailing list