Yes it had the game running ok when i first received it. The next thing i did was to install micropython with your bootloader from instructions at https://www.seeedstudio.com/blog/2020/07/08/circuitpython-now-supports-native-lcd-of-wio-terminal/
the screen works in micropython ardupy
from machine import LCD
lcd = LCD() # Initialize LCD and turn the backlight
lcd.fillScreen(lcd.color.BLACK) # Fill the LCD screen with color black
lcd.setTextSize(2) # Setting font size to 2
lcd.setTextColor(lcd.color.GREEN) # Setting test color to Green
lcd.drawString(“Hello World!”, 0, 0) # Printing Hello World at (0, 0)