Mercurial > touhou
comparison pytouhou/vm/eclrunner.py @ 99:68aa8bf00c88
Change a debug string to avoid confusion
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 04 Sep 2011 23:55:35 +0200 |
parents | ac2e5e1c2c3c |
children | 5c40cc1b8019 |
comparison
equal
deleted
inserted
replaced
98:d141c851c598 | 99:68aa8bf00c88 |
---|---|
52 | 52 |
53 if frame == self._game_state.frame: | 53 if frame == self._game_state.frame: |
54 try: | 54 try: |
55 callback = self._handlers[instr_type] | 55 callback = self._handlers[instr_type] |
56 except KeyError: | 56 except KeyError: |
57 logger.warn('unhandled opcode %d (args: %r)', instr_type, args) | 57 logger.warn('unhandled main opcode %d (args: %r)', instr_type, args) |
58 else: | 58 else: |
59 callback(self, sub, instr_type, *args) | 59 callback(self, sub, instr_type, *args) |
60 | 60 |
61 self.processes[:] = (process for process in self.processes | 61 self.processes[:] = (process for process in self.processes |
62 if process.run_iteration()) | 62 if process.run_iteration()) |