Quellcode durchsuchen

Remove another unused state argument

tags/v0.1.3
Fen Dweller vor 5 Jahren
Ursprung
Commit
b30d437274
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      game.js

+ 1
- 1
game.js Datei anzeigen

@@ -118,7 +118,7 @@ Returns the timeout id - but you still need to cancel it through stopTimer!
*/
function startTimer(config) {
const timeout = setTimeout(() => {
const result = config.func(state, config);
const result = config.func(config);
refresh();

// the timer may have terminated itself!


Laden…
Abbrechen
Speichern