1
0
Fork 0

Merge pull request #505 from nxdefiant/master

Pong: Keep display on during game
master
Gordon Williams 2020-06-22 07:37:38 +01:00 committed by GitHub
commit 81b5d5e8e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -1541,7 +1541,7 @@
"name": "Pong",
"shortName": "Pong",
"icon": "pong.png",
"version": "0.02",
"version": "0.03",
"description": "A clone of the Atari game Pong",
"tags": "game",
"type": "app",

View File

@ -1,2 +1,3 @@
0.01: New App!
0.02: 2 players local + improve ai
0.03: Keep display on during gameplay

View File

@ -337,6 +337,7 @@ function onFrame() {
ai.show();
net();
ball.show();
g.flip()
} else if (state === 3) {
g.clear();
g.setColor(0);