aboutsummaryrefslogtreecommitdiff
path: root/devtools/tasmrecover/tasm/cpp.py
diff options
context:
space:
mode:
authorVladimir Menshakov2011-06-12 12:05:59 +0400
committerAlyssa Milburn2011-06-15 17:34:17 +0200
commit8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da (patch)
treede21554356788a999d03aeaa5e758480c9b3e57b /devtools/tasmrecover/tasm/cpp.py
parent99a4bb86ddc6ab58d11c1cbab2ca2ff01aa8f835 (diff)
downloadscummvm-rg350-8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da.tar.gz
scummvm-rg350-8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da.tar.bz2
scummvm-rg350-8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da.zip
DREAMWEB: fixed seg XXX construction in generator
Diffstat (limited to 'devtools/tasmrecover/tasm/cpp.py')
-rw-r--r--devtools/tasmrecover/tasm/cpp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/tasmrecover/tasm/cpp.py b/devtools/tasmrecover/tasm/cpp.py
index 20af0ea632..5126cd6d4f 100644
--- a/devtools/tasmrecover/tasm/cpp.py
+++ b/devtools/tasmrecover/tasm/cpp.py
@@ -125,7 +125,7 @@ namespace %s {
m = re.match(r'seg\s+(.*?)$', expr)
if m is not None:
- return "context.ds"
+ return "context.data"
match_id = True
m = re.match(r'offset\s+(.*?)$', expr)