From fb7bf1975bdb2ccd93cad49b9020d1152ffc9472 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 2 Nov 2025 21:04:38 -0800 Subject: [PATCH] Update tictactoe_vid.py --- modules/games/tictactoe_vid.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/games/tictactoe_vid.py b/modules/games/tictactoe_vid.py index cf15bfe..cd13c86 100644 --- a/modules/games/tictactoe_vid.py +++ b/modules/games/tictactoe_vid.py @@ -179,6 +179,9 @@ def ttt_main(): pygame.init() screen = pygame.display.set_mode((0, 0), pygame.FULLSCREEN) pygame.display.set_caption("Tic-Tac-Toe 3D Display") + info = pygame.display.Info() + print(f"[MeshBot TTT Display] Resolution: {info.current_w}x{info.current_h} (fullscreen)") + print(f"[MeshBot TTT Display] Display driver: {pygame.display.get_driver()}") running = True while running: for event in pygame.event.get():