summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-11-17 20:39:53 -0600
committerBryan Bishop <kanzure@gmail.com>2013-11-17 20:39:53 -0600
commitd3f19c01581e2a7e977d226e6697ff7446c28b49 (patch)
treedc03b25539527a3c402e36893f368009c3167a11
parentfabc78f5db572d63d3225cafd97884825e4e7f04 (diff)
remove two unused methods from map_editor.py
-rw-r--r--pokemontools/map_editor.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/pokemontools/map_editor.py b/pokemontools/map_editor.py
index 78edee0..1cd9b02 100644
--- a/pokemontools/map_editor.py
+++ b/pokemontools/map_editor.py
@@ -683,14 +683,6 @@ def macro_values(line, macro):
values = values[1:]
return values
-def db_value(line):
- macro = 'db'
- return macro_values(line, macro)
-
-def db_values(line):
- macro = 'db'
- return macro_values(line, macro)
-
def asm_at_label(asm, label):
label_def = label + ':'
lines = asm.split('\n')