aboutsummaryrefslogtreecommitdiff
path: root/devtools/tasmrecover/tasm/cpp.py
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-08-18 00:27:44 +0200
committerWillem Jan Palenstijn2011-08-18 00:27:44 +0200
commitaa9f9708737d687d702db31f7976426ddc61f41c (patch)
treed79b1b5408606ba0f062ad5ca6bf01a1afb85d78 /devtools/tasmrecover/tasm/cpp.py
parent0ac5544b64322b55f0dab2c1dbf6582a7c4b9da0 (diff)
downloadscummvm-rg350-aa9f9708737d687d702db31f7976426ddc61f41c.tar.gz
scummvm-rg350-aa9f9708737d687d702db31f7976426ddc61f41c.tar.bz2
scummvm-rg350-aa9f9708737d687d702db31f7976426ddc61f41c.zip
DREAMWEB: Reorder modifiers for consistency (cosmetic)
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 db7855e0d0..d2b860ddf5 100644
--- a/devtools/tasmrecover/tasm/cpp.py
+++ b/devtools/tasmrecover/tasm/cpp.py
@@ -620,7 +620,7 @@ public:
offsets = sorted(offsets, key=lambda t: t[1])
for o in offsets:
- self.hd.write("\tconst static uint16 k%s = %s;\n" %o)
+ self.hd.write("\tstatic const uint16 k%s = %s;\n" %o)
self.hd.write("\n")
for p in set(self.methods):
if p in self.blacklist: