update readme

This commit is contained in:
Page Asgardius 2022-01-03 12:04:09 -07:00
parent d5e0c01903
commit a07903569c
2 changed files with 5 additions and 5 deletions

View file

@ -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)

8
r3.py
View file

@ -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()