qpython + pygame分段错误

时间:2015-05-27 17:51:58

标签: android pygame qpython

我在Nexus 5 QPython上安装并尝试运行此代码:

import pygame

size = width, height = 400, 400

window = pygame.display.set_mode(size)
pygame.display.set_caption('hello, pygame!')

screen = pygame.Surface((400,400))

done = True
while done:
  for e in pygame.event.get():
    if e.type == pygame.QUIT:
      done = False
  screen.fill((0,255,0))

  window.blit(screen, (0,0))
  pygame.display.flip()
跑完后,我看到了这个: enter image description here

但是,如果我将此代码冲洗到PC上,那就OK了

1 个答案:

答案 0 :(得分:0)

QPython 2.4.2 您需要添加

#-*-coding:utf8;-*-
#qpy:pygame

作为第一行和第二行包含pygame的qpython版本 如果问题仍然存在,请尝试添加您的qpython版本和解释器版本