[Scummvm-git-logs] scummvm master -> 88dff5504d7278e7ac86f438bd2f940e386ff4c0
whoozle
noreply at scummvm.org
Thu Mar 12 22:31:26 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:
88dff5504d PHOENIXVR: fix vertical angle
Commit: 88dff5504d7278e7ac86f438bd2f940e386ff4c0
https://github.com/scummvm/scummvm/commit/88dff5504d7278e7ac86f438bd2f940e386ff4c0
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-03-12T22:31:08Z
Commit Message:
PHOENIXVR: fix vertical angle
Changed paths:
engines/phoenixvr/phoenixvr.h
diff --git a/engines/phoenixvr/phoenixvr.h b/engines/phoenixvr/phoenixvr.h
index 6aa39a2a222..493ca786dc7 100644
--- a/engines/phoenixvr/phoenixvr.h
+++ b/engines/phoenixvr/phoenixvr.h
@@ -165,7 +165,7 @@ public:
void setAngle(float x, float y) {
_angleX.set(y);
- _angleY.set(x - kPi2);
+ _angleY.set(kPi2 - x);
}
void setNord(float a) {
More information about the Scummvm-git-logs
mailing list