1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-04 11:19:04 +00:00

joypanspeed should be safe to set to 0.0001 in SDL2

This commit is contained in:
Zeno Rogue
2025-12-18 01:54:58 +01:00
parent d24513a9da
commit 5affa04b9f

View File

@@ -1503,7 +1503,7 @@ EX void initConfig() {
param_i(vid.joyvalue2, "vid.joyvalue2", 5600);
param_i(vid.joysmooth, "vid.joysmooth", 200);
param_i(vid.joypanthreshold, "vid.joypanthreshold", 2500);
param_f(vid.joypanspeed, "vid.joypanspeed", ISPANDORA ? 0.0001 : 0);
param_f(vid.joypanspeed, "vid.joypanspeed", (ISPANDORA || SDLVER >= 2) ? 0.0001 : 0);
param_b(autojoy, "autojoy")
-> editable("joystick moves automatically", 'J');
param_b(defaultjoy, "defaultjoy")