diff --git a/README.md b/README.md index 8e6e524..459c5d7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # The Red Robot Radio -A simple game using Pygame library (pointer device required). +A simple game using Pygame library (version 2.1 or later required). You control a spaceship with moving computer mouse (or any other input device that can emulate it) \ No newline at end of file diff --git a/r3.py b/r3.py index 6edf0d1..72b89e0 100644 --- a/r3.py +++ b/r3.py @@ -477,11 +477,11 @@ while running: sysclock = font.render(str(datetime.datetime.utcnow()), True, pygame.Color('white')) cpuarch = font.render(str(platform.machine()), True, pygame.Color('white')) playcount = font.render(str(runtime), True, pygame.Color('white')) - #infox = font.render(str(bx), True, pygame.Color('white')) - #infoy = font.render(str(by), True, pygame.Color('white')) + infox = font.render(str(bx), True, pygame.Color('white')) + infoy = font.render(str(by), True, pygame.Color('white')) screen.blit(sysclock, (120, 50)) screen.blit(cpuarch, (50, 80)) screen.blit(playcount, (160, 80)) - #screen.blit(infox, (50, 110)) - #screen.blit(infoy, (50, 140)) + screen.blit(infox, (50, 110)) + screen.blit(infoy, (50, 140)) pygame.display.update() \ No newline at end of file