Skip to content

Commit 23124f5

Browse files
committed
fix waternet lint errors
1 parent 14e5cd9 commit 23124f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/waternet/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ let levelLocks = new Uint8Array(GMCOUNT * DIFFCOUNT);
132132
let options = new Uint8Array(OPCOUNT);
133133

134134
//sound
135-
let soundon = 1; // TODO: Should this be 'soundOn' ?
135+
let soundOn = 1;
136136

137137
//game
138138
let paused;
@@ -1804,7 +1804,7 @@ function validateSaveState() {
18041804
function initSaveState() {
18051805
//read from file
18061806
let file = require("Storage").open("waternet.data.dat", "r");
1807-
let index = 0;
1807+
let tmp, index = 0;
18081808
for (index = 0; index < GMCOUNT * DIFFCOUNT; index++) {
18091809
tmp = file.readLine();
18101810
if (tmp !== undefined)

0 commit comments

Comments
 (0)