shithub: pokered

Download patch

ref: d2823aea625e53ad3df8c250190ee25a40393174
parent: 8d6fc27586c7a447fe232dffc668684a50fef937
author: Bryan Bishop <kanzure@gmail.com>
date: Tue Jan 17 18:40:08 EST 2012

update romvisualizer for common.asm

hg-commit-id: 478c951152e4


--- a/extras/romvisualizer.py
+++ b/extras/romvisualizer.py
@@ -6,12 +6,12 @@
 changeset_numbers = range(266, 635)
 
 def take_snapshot_image(changeset_number):
-    "turn pokered.asm into an image at a certain version"
+    "turn common.asm into an image at a certain version"
 
-    print "reverting pokered.asm to r" + str(changeset_number)
+    print "reverting common.asm to r" + str(changeset_number)
 
     #revert the file
-    os.system("hg revert ../pokered.asm -r" + str(changeset_number))
+    os.system("hg revert ../common.asm -r" + str(changeset_number))
 
     print "generating the image.."