summaryrefslogtreecommitdiff
path: root/extras/romvisualizer.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-01-25 22:33:42 -0600
committerBryan Bishop <kanzure@gmail.com>2012-01-25 22:33:42 -0600
commit4f7a07efa9e93d491c6efcc14994b19cd794d3f6 (patch)
tree7dd66a02ea4993c4bfce1499d68ee2f192822a05 /extras/romvisualizer.py
parent8cf4620deb07e53d7a419016080b8c10ed253733 (diff)
rename common.asm -> main.asm
hg-commit-id: adec8319c54b
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 7e80f786..b3fd7cd5 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 common.asm into an image at a certain version"
+ "turn main.asm into an image at a certain version"
- print "reverting common.asm to r" + str(changeset_number)
+ print "reverting main.asm to r" + str(changeset_number)
#revert the file
- os.system("hg revert ../common.asm -r" + str(changeset_number))
+ os.system("hg revert ../main.asm -r" + str(changeset_number))
print "generating the image.."