ソースを参照

Remove another unused state argument

tags/v0.1.3
Fen Dweller 6年前
親
コミット
b30d437274
1個のファイルの変更、1行の追加、1行の削除
  1. +1
    -1
      game.js

+ 1
- 1
game.js ファイルの表示

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


// the timer may have terminated itself! // the timer may have terminated itself!


読み込み中…
キャンセル
保存