summaryrefslogtreecommitdiff
path: root/extras/make_map_size_constants.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/make_map_size_constants.py
parent8cf4620deb07e53d7a419016080b8c10ed253733 (diff)
rename common.asm -> main.asm
hg-commit-id: adec8319c54b
Diffstat (limited to 'extras/make_map_size_constants.py')
-rw-r--r--extras/make_map_size_constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/make_map_size_constants.py b/extras/make_map_size_constants.py
index c40a4514..c4b13da7 100644
--- a/extras/make_map_size_constants.py
+++ b/extras/make_map_size_constants.py
@@ -23,8 +23,8 @@ def get_map_size_constants(do_sed=False):
output += constant_name + "_WIDTH EQU $%.2x\n" % (width)
output += "\n"
- sed_lines += "sed -i 's/" + base_name + "Height/" + constant_name + "_HEIGHT" + "/g' common.asm" + "\n"
- sed_lines += "sed -i 's/" + base_name + "Width/" + constant_name + "_WIDTH" + "/g' common.asm" + "\n"
+ sed_lines += "sed -i 's/" + base_name + "Height/" + constant_name + "_HEIGHT" + "/g' main.asm" + "\n"
+ sed_lines += "sed -i 's/" + base_name + "Width/" + constant_name + "_WIDTH" + "/g' main.asm" + "\n"
if do_sed:
return sed_lines