diff options
author | Vladimir Menshakov | 2011-06-11 15:40:04 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:34:05 +0200 |
commit | 3f592047bb6e3558d9aca19e2e50fa2f533d8331 (patch) | |
tree | bef71b7233092cae1f489013480bc5faf18acf56 /devtools | |
parent | 038f19dfe98756da94cbe3de47940951fae90e03 (diff) | |
download | scummvm-rg350-3f592047bb6e3558d9aca19e2e50fa2f533d8331.tar.gz scummvm-rg350-3f592047bb6e3558d9aca19e2e50fa2f533d8331.tar.bz2 scummvm-rg350-3f592047bb6e3558d9aca19e2e50fa2f533d8331.zip |
DREAMWEB: fixed rep prefix
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 3caf21e6cf..0e87656bcc 100644 --- a/devtools/tasmrecover/tasm/cpp.py +++ b/devtools/tasmrecover/tasm/cpp.py @@ -393,7 +393,7 @@ namespace %s { self.body += p def _rep(self): - self.body += "\twhile(--context.cx) "; + self.body += "\twhile(context.cx--) "; def _lodsb(self): self.body += "\tcontext._lodsb();\n"; |