[pypy-svn] r62254 - pypy/trunk/pypy/lang/gameboy/debug

cami at codespeak.net cami at codespeak.net
Fri Feb 27 22:18:25 CET 2009


Author: cami
Date: Fri Feb 27 22:18:23 2009
New Revision: 62254

Modified:
   pypy/trunk/pypy/lang/gameboy/debug/debug_comparator.py
Log:
removed an invalid compare test for video


Modified: pypy/trunk/pypy/lang/gameboy/debug/debug_comparator.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/debug/debug_comparator.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/debug/debug_comparator.py	Fri Feb 27 22:18:23 2009
@@ -324,8 +324,6 @@
             ("Check whether emulated Transfer", 
                     self.video.emulated_transfer, "emulated_transfer"),
             ("Check whether emulated VBLank", 
-                    self.video.emulated_vblank, "emulated_vblank"),
-            ("Check whether called draw Backgroundw", 
-                    self.video.drew_background, "drew_background"),
+                    self.video.emulated_vblank, "emulated_vblank")
         ]
         self.compare_set(cmp, data, label="video", printall=True)



More information about the Pypy-commit mailing list