Skip to content

Commit 161f1de

Browse files
committed
v1.0.1, fixes #1
1 parent 4033c1b commit 161f1de

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

about.md.old

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Edit about.md to change this
99
- gv_0026 Auto Retry
1010
- gv_0028 Disable Thumbstick
1111
- gv_0040 Show Percent
12-
- gv_0026 Default Mini Icon
12+
- gv_0060 Default Mini Icon
1313
- gv_0052 Fast Reset
1414
- gv_0074 Restart Button
1515
- gv_0109 Extra Info (?)
@@ -41,14 +41,14 @@ Edit about.md to change this
4141
- gv_0101 Force Smooth Fix
4242
- gv_0102 Smooth Fix in the Editor
4343
- gv_0108 Auto LDM
44-
- gv_0126 Save Gauntlet Levels
44+
- gv_0127 Save Gauntlet Levels
4545
- gv_0128 Lock Cursor In-Game
4646
- gv_0136 Extra LDM
4747
- gv_0140 Disable Orb Scale
4848
- gv_0141 Disable Trigger Orb Scale
4949
- gv_0155 Disable Shader Anti-Aliasing
5050
- Audio
51-
- gv_0010 Load Songs into Memory
51+
- gv_0019 Load Songs into Memory
5252
- gv_0022 Higher Audio Quality
5353
- gv_0033 Change Song Path
5454
- gv_0018 No Song Limit

script2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@
103103
21:47:34 INFO [Main] [Settings+]: 0174
104104
21:47:34 INFO [Main] [Settings+]: 0015
105105
21:47:34 INFO [Main] [Settings+]: 0153
106-
21:47:34 INFO [Main] [Settings+]: 0026
106+
21:47:34 INFO [Main] [Settings+]: 0060
107107
21:47:34 INFO [Main] [Settings+]: 0061
108108
21:47:34 INFO [Main] [Settings+]: 0062
109109
21:47:34 INFO [Main] [Settings+]: 0096
110-
21:47:34 INFO [Main] [Settings+]: 0010
110+
21:47:34 INFO [Main] [Settings+]: 0019
111111
21:47:34 INFO [Main] [Settings+]: 0022
112112
21:47:34 INFO [Main] [Settings+]: 0033
113113
21:47:34 INFO [Main] [Settings+]: 0018
@@ -135,7 +135,7 @@
135135
21:47:34 INFO [Main] [Settings+]: 0136
136136
21:47:34 INFO [Main] [Settings+]: 0042
137137
21:47:34 INFO [Main] [Settings+]: 0056
138-
21:47:34 INFO [Main] [Settings+]: 0126
138+
21:47:34 INFO [Main] [Settings+]: 0127
139139
21:47:34 INFO [Main] [Settings+]: 0093
140140
21:47:34 INFO [Main] [Settings+]: 0066
141141
21:47:34 INFO [Main] [Settings+]: 0014

src/SettingsLayer.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ std::string descForGV(std::string gv) {
215215
{"0109", "Toggles the extra info/debug label in game"},
216216
{"0113", "Flips the platformer controls"},
217217
{"0153", "Whether the player should explode on death"},
218+
{"0019", "Loads audio into memory. Used to be available in 2.1, not available in base 2.2"},
218219
{"0022", "Whether the game should use higher audio quality"},
219220
{"0075", "(Parental Controls) Disables comments <cy>(known to be buggy)</c>"},
220221
{"0076", "(Parental Controls) Disables account posts"},
@@ -404,13 +405,13 @@ void SettingsLayer::switchPage(SettingPage page, bool isFirstRun, CCMenuItemSpri
404405
SETTING("Flip Pause Button", "0015")
405406
SEPARATOR("Icon Options")
406407
SETTING("Explode Player on Death", "0153")
407-
SETTING("Default Mini Icon", "0026")
408+
SETTING("Default Mini Icon", "0060")
408409
SETTING("Switch Spider Teleport Color", "0061")
409410
SETTING("Switch Dash Fire Color", "0062")
410411
SETTING("Switch Wave Trail Color", "0096")
411412
break;
412413
case Audio:
413-
SETTING("Load Songs into Memory", "0010")
414+
SETTING("Load Songs into Memory", "0019")
414415
SETTING("Higher Audio Quality", "0022")
415416
SETTING("Change Song Path", "0033")
416417
SETTING("No Song Limit", "0018")
@@ -449,7 +450,7 @@ void SettingsLayer::switchPage(SettingPage page, bool isFirstRun, CCMenuItemSpri
449450
SEPARATOR("Improvements (may cause issues on low end devices)")
450451
SETTING("Increase Max Levels", "0042")
451452
SETTING("Disable Object Alert", "0056")
452-
SETTING("Save Gauntlet Levels", "0126")
453+
SETTING("Save Gauntlet Levels", "0127")
453454
SETTING("Increase Local Levels Per Page", "0093")
454455
SETTING("High Capacity Mode", "0066")
455456
SEPARATOR("Disable Toggles")

0 commit comments

Comments
 (0)