diff pytouhou/vm/eclrunner.py @ 100:5c40cc1b8019

Use game's frame for interpolation. No more time manipulation interfering with interpolators!
author Thibaut Girka <thib@sitedethib.com>
date Mon, 05 Sep 2011 00:29:31 +0200
parents 68aa8bf00c88
children ad9297e0fbf2
line wrap: on
line diff
--- a/pytouhou/vm/eclrunner.py
+++ b/pytouhou/vm/eclrunner.py
@@ -152,6 +152,7 @@ class ECLRunner(object):
                     logger.warn('unhandled opcode %d (args: %r)', instr_type, args)
                 else:
                     callback(self, *args)
+                    logger.debug('executed opcode %d (args: %r)', instr_type, args)
 
         self.frame += 1
         return True