Skip to content

Commit

Permalink
Fix crash when opening debug screen
Browse files Browse the repository at this point in the history
  • Loading branch information
agateau committed Dec 10, 2024
1 parent 45f293a commit 5ecff39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/com/agateau/pixelwheels/screens/DebugScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private void setupUi() {
mCurrentGroup = tabMenuItem.addPage("Speed");
addRange("Max driving force (Casual)", "easyMaxDrivingForce", 10, 200, 10);
addRange("Max driving force (Pro)", "mediumMaxDrivingForce", 10, 200, 10);
addRange("Max driving force (Legen.)", "proMaxDrivingForce", 10, 200, 10);
addRange("Max driving force (Legen.)", "hardMaxDrivingForce", 10, 200, 10);
addRange("Max speed", "maxSpeed", 10, 400, 10);
addRange("AI speed limiter", "aiSpeedLimiter", 0.1f, 1f, 0.1f);
mCurrentGroup = tabMenuItem.addPage("Turbo");
Expand Down

0 comments on commit 5ecff39

Please sign in to comment.