We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e5cd9 commit 23124f5Copy full SHA for 23124f5
apps/waternet/app.js
@@ -132,7 +132,7 @@ let levelLocks = new Uint8Array(GMCOUNT * DIFFCOUNT);
132
let options = new Uint8Array(OPCOUNT);
133
134
//sound
135
-let soundon = 1; // TODO: Should this be 'soundOn' ?
+let soundOn = 1;
136
137
//game
138
let paused;
@@ -1804,7 +1804,7 @@ function validateSaveState() {
1804
function initSaveState() {
1805
//read from file
1806
let file = require("Storage").open("waternet.data.dat", "r");
1807
- let index = 0;
+ let tmp, index = 0;
1808
for (index = 0; index < GMCOUNT * DIFFCOUNT; index++) {
1809
tmp = file.readLine();
1810
if (tmp !== undefined)
0 commit comments