summaryrefslogtreecommitdiff
path: root/extras/romvisualizer.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-01-17 23:40:08 -0600
committerBryan Bishop <kanzure@gmail.com>2012-01-17 23:40:08 -0600
commitd2823aea625e53ad3df8c250190ee25a40393174 (patch)
tree7215a573f265de22ae7fc9e7e1c780ea13133186 /extras/romvisualizer.py
parent8d6fc27586c7a447fe232dffc668684a50fef937 (diff)
update romvisualizer for common.asm
hg-commit-id: 478c951152e4
Diffstat (limited to 'extras/romvisualizer.py')
-rw-r--r--extras/romvisualizer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/romvisualizer.py b/extras/romvisualizer.py
index a5e2af7a..7e80f786 100644
--- a/extras/romvisualizer.py
+++ b/extras/romvisualizer.py
@@ -6,12 +6,12 @@ import os
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.."