Update tictactoe_vid.py

This commit is contained in:
SpudGunMan
2025-11-02 21:04:38 -08:00
parent 1e7887d480
commit fb7bf1975b

View File

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