From d64b0858fca38aa75a411fc7cb838a3ffb36187a Mon Sep 17 00:00:00 2001 From: Patrick Tschuchnig Date: Wed, 11 Sep 2019 16:37:09 +0200 Subject: [PATCH] completely disabled led handler, also the name input box keeps being at the wrong place :x --- gametest_rev1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gametest_rev1.py b/gametest_rev1.py index 8e4bf8f..93ad4c0 100644 --- a/gametest_rev1.py +++ b/gametest_rev1.py @@ -342,7 +342,7 @@ def enter_name(): textbox_surface = pygame_font_2.render(str(name), True, pygame_font_main_color) textbox_rectangle = textbox_surface.get_rect() - textbox_rectangle.topleft = (930, 400) + textbox_rectangle.topleft = (800, 480) screen.blit(textbox_text_surface, textbox_text_rectangle) screen.blit(textbox_surface, textbox_rectangle) @@ -496,7 +496,7 @@ while True: clear_screen() handle_events() show_debug() - led_handler() + #led_handler() print(int((pygame.time.get_ticks()/1000))%2) if game_running == False and game_ending == False: