私のpygameコードに問題があります。
import pygame
from pygame.locals import *
ANCHO_MAPA = 800
ALTO_MAPA = 600
pos_x = 0
pygame.init()
screen = pygame.display.set_mode((ANCHO_MAPA, ALTO_MAPA))
pygame.display.set_caption("Gercho")
tile = pygame.image.load('ima/0.png').convert_alpha()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
for x in range(ALTO_MAPA):
screen.blit(tile, (1, x))
pygame.display.flip()
試してみると、このエラーが発生します。どうしたの?