Skip to content

Commit 6d6a2c1

Browse files
More drift prevention for screensaver
idk, this seems to help
1 parent 92226b4 commit 6d6a2c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

TitleScreen/TitleScreen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public override void _Input(InputEvent @event)
3737

3838
if (!(@event is not InputEventJoypadButton and not InputEventKey and not InputEventJoypadMotion))
3939
{
40-
if (@event is InputEventJoypadMotion motion && Math.Abs( motion.AxisValue) < 0.1f) return;
40+
if (@event is InputEventJoypadMotion motion && Math.Abs( motion.AxisValue) < 0.5f) return;
4141

4242
if (_isScreensaverActive)
4343
{

0 commit comments

Comments
 (0)