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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user