1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-13 04:13:03 +00:00

uninvert the Y joystick axis in Relative Hell

This commit is contained in:
Zeno Rogue
2025-10-10 10:54:30 +02:00
parent a5ca33d400
commit d47142b3c1

View File

@@ -112,7 +112,7 @@ ld read_movement() {
auto& axes = multi::axes_for(0); auto& axes = multi::axes_for(0);
ld mdx = axes[0]/30000.; ld mdx = axes[0]/30000.;
ld mdy = axes[1]/30000.; ld mdy = -axes[1]/30000.;
#if CAP_VR #if CAP_VR
if(vrhr::active()) { if(vrhr::active()) {
mdy -= vrhr::vrgo_y; mdy -= vrhr::vrgo_y;