aboutsummaryrefslogtreecommitdiff
path: root/devtools/tasmrecover/tasm/lex.py
diff options
context:
space:
mode:
authorVladimir Menshakov2011-06-13 15:22:14 +0400
committerAlyssa Milburn2011-06-15 17:34:43 +0200
commit49e7c7a7355b78a3dc4e0aae120a95dba9600bbf (patch)
tree91a5ea2803e5905a697799cfd9fa2d04a8a47fcd /devtools/tasmrecover/tasm/lex.py
parentf46a889e6df85a9046a7468ce7acc0c4c34bf1e4 (diff)
downloadscummvm-rg350-49e7c7a7355b78a3dc4e0aae120a95dba9600bbf.tar.gz
scummvm-rg350-49e7c7a7355b78a3dc4e0aae120a95dba9600bbf.tar.bz2
scummvm-rg350-49e7c7a7355b78a3dc4e0aae120a95dba9600bbf.zip
DREAMWEB: fixed occasional stripping of the strings in data segment
Diffstat (limited to 'devtools/tasmrecover/tasm/lex.py')
-rw-r--r--devtools/tasmrecover/tasm/lex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/tasmrecover/tasm/lex.py b/devtools/tasmrecover/tasm/lex.py
index ba66611bce..cf7e6e19bf 100644
--- a/devtools/tasmrecover/tasm/lex.py
+++ b/devtools/tasmrecover/tasm/lex.py
@@ -41,7 +41,7 @@ def parse_args(text):
break
token += c
- token = token.strip()
+ #token = token.strip()
if len(token):
result.append(token)
#print result