Skip to content

Commit 46e7744

Browse files
author
Thomas
committed
Added a ';'
1 parent 34649a7 commit 46e7744

4 files changed

Lines changed: 2 additions & 2 deletions

File tree

2-flappy_bird/basic_template.zip

-1 Bytes
Binary file not shown.

2-flappy_bird/basic_template/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ game_state.main.prototype = {
1717
update: function() {
1818
// Function called 60 times per second
1919
},
20-
}
20+
};
2121

2222
// Add and start the 'main' state to start the game
2323
game.state.add('main', game_state.main);

2-flappy_bird/flappy_bird.zip

-1 Bytes
Binary file not shown.

2-flappy_bird/flappy_bird/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ game_state.main.prototype = {
9494
this.score += 1;
9595
this.label_score.content = this.score;
9696
},
97-
}
97+
};
9898

9999
// Add and start the 'main' state to start the game
100100
game.state.add('main', game_state.main);

0 commit comments

Comments
 (0)