summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
Diffstat (limited to 'extras')
-rw-r--r--extras/add_map_labels_to_map_headers.py1
-rw-r--r--extras/analyze_incbins.py3
-rw-r--r--extras/analyze_texts.py1
-rw-r--r--extras/connection_helper.py1
-rw-r--r--extras/extract_maps.py1
-rw-r--r--extras/extract_tileblocks.py1
-rw-r--r--extras/extract_tilesets.py1
-rw-r--r--extras/fix_labels.py1
-rw-r--r--extras/gbz80disasm.py1
-rw-r--r--extras/insert_object_data.py1
-rw-r--r--extras/insert_texts.py1
-rw-r--r--extras/make_map_size_constants.py1
-rw-r--r--extras/map_block_dumper.py3
-rw-r--r--extras/pretty_map_headers.py1
-rw-r--r--extras/pretty_text.py1
-rw-r--r--extras/pretty_trainer_headers.py1
-rw-r--r--extras/replace_dimensions.py1
-rw-r--r--extras/romvisualizer.py1
-rw-r--r--extras/romviz.py1
-rw-r--r--extras/text_pointers.py1
20 files changed, 2 insertions, 22 deletions
diff --git a/extras/add_map_labels_to_map_headers.py b/extras/add_map_labels_to_map_headers.py
index 61657e9e..89e6f361 100644
--- a/extras/add_map_labels_to_map_headers.py
+++ b/extras/add_map_labels_to_map_headers.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2011-01-04
#purpose: insert labels into map headers
diff --git a/extras/analyze_incbins.py b/extras/analyze_incbins.py
index 0684b027..b52f0e15 100644
--- a/extras/analyze_incbins.py
+++ b/extras/analyze_incbins.py
@@ -1,8 +1,7 @@
-#!/usr/bin/python2.7
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-03
#purpose: map which addresses are left
-#note: using python2.7 because of subprocess
+#note: use python2.7 because of subprocess
import sys, os
from copy import copy, deepcopy
import subprocess
diff --git a/extras/analyze_texts.py b/extras/analyze_texts.py
index 6a399bfb..08b8ab03 100644
--- a/extras/analyze_texts.py
+++ b/extras/analyze_texts.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-06
#analyze texts, how many commands are unknown?
diff --git a/extras/connection_helper.py b/extras/connection_helper.py
index 1eab1df2..c15b3582 100644
--- a/extras/connection_helper.py
+++ b/extras/connection_helper.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-15
#help with connection math
diff --git a/extras/extract_maps.py b/extras/extract_maps.py
index 81a64bf6..bc0a1933 100644
--- a/extras/extract_maps.py
+++ b/extras/extract_maps.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-02
#url: http://hax.iimarck.us/files/rbheaders.txt
diff --git a/extras/extract_tileblocks.py b/extras/extract_tileblocks.py
index f71506e9..1d01c340 100644
--- a/extras/extract_tileblocks.py
+++ b/extras/extract_tileblocks.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-14
#split out blocksets into binary data files
diff --git a/extras/extract_tilesets.py b/extras/extract_tilesets.py
index 4fa71f8d..a0eb4773 100644
--- a/extras/extract_tilesets.py
+++ b/extras/extract_tilesets.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-14
#throw tilesets into separate files
diff --git a/extras/fix_labels.py b/extras/fix_labels.py
index 61d7f105..321a18ea 100644
--- a/extras/fix_labels.py
+++ b/extras/fix_labels.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-27
#fix trainer header labels to not suck so much
diff --git a/extras/gbz80disasm.py b/extras/gbz80disasm.py
index f72e17a1..80d169e5 100644
--- a/extras/gbz80disasm.py
+++ b/extras/gbz80disasm.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-09
import extract_maps
diff --git a/extras/insert_object_data.py b/extras/insert_object_data.py
index b87894a4..e779c10b 100644
--- a/extras/insert_object_data.py
+++ b/extras/insert_object_data.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python2.7
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-05
#insert object data into pokered.asm
diff --git a/extras/insert_texts.py b/extras/insert_texts.py
index 4cadc5c3..d5a80150 100644
--- a/extras/insert_texts.py
+++ b/extras/insert_texts.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python2.7
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-07, 2012-01-17, 2012-01-27
#insert TX_FAR targets into pokered.asm
diff --git a/extras/make_map_size_constants.py b/extras/make_map_size_constants.py
index c4b13da7..4dfb1bee 100644
--- a/extras/make_map_size_constants.py
+++ b/extras/make_map_size_constants.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-15
#dump map height/width constants
diff --git a/extras/map_block_dumper.py b/extras/map_block_dumper.py
index af1d8bcd..1ffa1e61 100644
--- a/extras/map_block_dumper.py
+++ b/extras/map_block_dumper.py
@@ -1,8 +1,7 @@
-#!/usr/bin/python2.7
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-03
#purpose: extract .blk files from baserom.gbc
-#note: using python2.7 because of subprocess in analyze_incbins
+#note: use python2.7 because of subprocess in analyze_incbins
import extract_maps #rom, assert_rom, load_rom, calculate_pointer, load_map_pointers, read_all_map_headers, map_headers
from pretty_map_headers import map_name_cleaner
from analyze_incbins import asm, offset_to_pointer, find_incbin_to_replace_for, split_incbin_line_into_three, generate_diff_insert, load_asm, isolate_incbins, process_incbins
diff --git a/extras/pretty_map_headers.py b/extras/pretty_map_headers.py
index 729209ff..ef26be36 100644
--- a/extras/pretty_map_headers.py
+++ b/extras/pretty_map_headers.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
# -*- coding: utf-8 -*-
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-02
diff --git a/extras/pretty_text.py b/extras/pretty_text.py
index 9e669aca..4933dca2 100644
--- a/extras/pretty_text.py
+++ b/extras/pretty_text.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-16
from optparse import OptionParser
diff --git a/extras/pretty_trainer_headers.py b/extras/pretty_trainer_headers.py
index 7ddcbbf3..5bfc2be9 100644
--- a/extras/pretty_trainer_headers.py
+++ b/extras/pretty_trainer_headers.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-24
from optparse import OptionParser
diff --git a/extras/replace_dimensions.py b/extras/replace_dimensions.py
index cdd72906..fc089f74 100644
--- a/extras/replace_dimensions.py
+++ b/extras/replace_dimensions.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-15
#replace dimensions with constants
diff --git a/extras/romvisualizer.py b/extras/romvisualizer.py
index b3fd7cd5..b7c7c1c0 100644
--- a/extras/romvisualizer.py
+++ b/extras/romvisualizer.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-13
import os
diff --git a/extras/romviz.py b/extras/romviz.py
index eefdca30..a87295ef 100644
--- a/extras/romviz.py
+++ b/extras/romviz.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-10
#show me an image
diff --git a/extras/text_pointers.py b/extras/text_pointers.py
index 2d16db1e..f0f74da7 100644
--- a/extras/text_pointers.py
+++ b/extras/text_pointers.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-03
#utilities for working with text pointers