diff options
author | Vladimir Menshakov | 2011-06-12 12:05:59 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:34:17 +0200 |
commit | 8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da (patch) | |
tree | de21554356788a999d03aeaa5e758480c9b3e57b /devtools | |
parent | 99a4bb86ddc6ab58d11c1cbab2ca2ff01aa8f835 (diff) | |
download | scummvm-rg350-8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da.tar.gz scummvm-rg350-8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da.tar.bz2 scummvm-rg350-8ea7a7a3d1e92bfd9b8f4836cba4492bb91fc8da.zip |
DREAMWEB: fixed seg XXX construction in generator
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/tasmrecover/tasm/cpp.py | 2 |
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) |