Skip to content

Commit

Permalink
Update V3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HalloSpaceBoy5 authored Dec 15, 2023
1 parent bc5097a commit 45b724b
Show file tree
Hide file tree
Showing 16 changed files with 511 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Games/Breakout/Breakout.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def title_screen():

if ticks_diff(ticks_ms(), now) > 200:
now = ticks_ms()
pgb.create_text("PRESS ANY BUTTON",-1,175,PicoGameBoy.color(255,255,255))
pgb.create_text("PRESS A TO PLAY",-1,175,PicoGameBoy.color(255,255,255))
pgb.show()
while ticks_diff(ticks_ms(), now) < 200:
sleep(0.020)
Expand Down
3 changes: 1 addition & 2 deletions Games/Flappy Bird/Flappy Bird.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,7 @@ def main_game():
break
if ticks_diff(ticks_ms(), now) > 200:
now = ticks_ms()
pgb.create_text("PRESS ANY BUTTON",20, 120,PicoGameBoy.color(0,0,0))
pgb.create_text("TO PLAY",50, 130, PicoGameBoy.color(0,0,0))
pgb.create_text("PRESS A TO PLAY",20, 120,PicoGameBoy.color(0,0,0))
pgb.show()
pgb.free_mem()
while ticks_diff(ticks_ms(), now) < 200:
Expand Down
2 changes: 1 addition & 1 deletion Games/Game Of Life/Game Of Life.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def title_screen():

if time.ticks_diff(time.ticks_ms(), now) > 200:
now = time.ticks_ms()
pgb.create_text("PRESS ANY BUTTON",-1,150,WHITE)
pgb.create_text("PRESS A TO PLAY",-1,150,WHITE)
pgb.show()
while time.ticks_diff(time.ticks_ms(), now) < 200:
time.sleep(0.020)
Expand Down
2 changes: 1 addition & 1 deletion Games/Pac Man/Pac Man.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ def view_scores():

if ticks_diff(ticks_ms(), now) > 200:
now = ticks_ms()
pgb.create_text("PRESS ANY BUTTON",-1,150,WHITE)
pgb.create_text("PRESS A TO PLAY",-1,150,WHITE)
pgb.show()
while ticks_diff(ticks_ms(), now) < 200:
sleep(0.020)
Expand Down
Binary file not shown.
Binary file added Games/Space Invaders/Space Invaders Title.pbimg
Binary file not shown.
Loading

0 comments on commit 45b724b

Please sign in to comment.