Mercurial > touhou
comparison eosd @ 224:9bb26dbb8438
Remove useless and occasionally problematic (think about non-utf8 terminals) print calls.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Mon, 19 Dec 2011 20:29:30 +0100 |
parents | 091301805cce |
children | c417bb6c98bf 9d4d52793eca |
comparison
equal
deleted
inserted
replaced
223:98c64ffcbdff | 224:9bb26dbb8438 |
---|---|
50 stage = resource_loader.get_stage('stage%d.std' % stage_num) | 50 stage = resource_loader.get_stage('stage%d.std' % stage_num) |
51 | 51 |
52 background_anm_wrapper = resource_loader.get_anm_wrapper(('stg%dbg.anm' % stage_num,)) | 52 background_anm_wrapper = resource_loader.get_anm_wrapper(('stg%dbg.anm' % stage_num,)) |
53 background = Background(stage, background_anm_wrapper) | 53 background = Background(stage, background_anm_wrapper) |
54 | 54 |
55 # Let's go! | |
56 print(stage.name) | |
57 | |
58 # Main loop | 55 # Main loop |
59 runner = GameRunner(resource_loader, game, background, replay=replay) | 56 runner = GameRunner(resource_loader, game, background, replay=replay) |
60 runner.start() | 57 runner.start() |
61 | 58 |
62 | 59 |