Skip to content

Commit

Permalink
Merge pull request #478 from agateau/fix-crash-on-debug-screen
Browse files Browse the repository at this point in the history
Fix crash when opening debug screen
  • Loading branch information
agateau authored Dec 16, 2024
2 parents 3f660c5 + b9442ed commit c6b99b2
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 c6b99b2

Please sign in to comment.