diff options
author | Willem Jan Palenstijn | 2011-08-18 00:27:44 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-08-18 00:27:44 +0200 |
commit | aa9f9708737d687d702db31f7976426ddc61f41c (patch) | |
tree | d79b1b5408606ba0f062ad5ca6bf01a1afb85d78 /devtools | |
parent | 0ac5544b64322b55f0dab2c1dbf6582a7c4b9da0 (diff) | |
download | scummvm-rg350-aa9f9708737d687d702db31f7976426ddc61f41c.tar.gz scummvm-rg350-aa9f9708737d687d702db31f7976426ddc61f41c.tar.bz2 scummvm-rg350-aa9f9708737d687d702db31f7976426ddc61f41c.zip |
DREAMWEB: Reorder modifiers for consistency (cosmetic)
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 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: |