aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/screen.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-11-19 13:05:12 +0100
committerJohannes Schickel2012-11-19 13:06:09 +0100
commitbbb83f132b23b6a45eb6d979172264c1587f227a (patch)
tree35efe06598ce4ed8f924f2638d32e1dd2f31e034 /engines/kyra/screen.h
parentdd551c4775ab016ad9d24e2d48a0919bf5739d4b (diff)
downloadscummvm-rg350-bbb83f132b23b6a45eb6d979172264c1587f227a.tar.gz
scummvm-rg350-bbb83f132b23b6a45eb6d979172264c1587f227a.tar.bz2
scummvm-rg350-bbb83f132b23b6a45eb6d979172264c1587f227a.zip
KYRA: Make "const type *const" use consistent.
I used this command for changing "const type * const" to "const type *const": git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/const \([a-zA-Z0-9_]*\) \* const/const \1 \*const/g'
Diffstat (limited to 'engines/kyra/screen.h')
-rw-r--r--engines/kyra/screen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/screen.h b/engines/kyra/screen.h
index bd94e2611f..7f3abf8b5f 100644
--- a/engines/kyra/screen.h
+++ b/engines/kyra/screen.h
@@ -596,7 +596,7 @@ protected:
int _animBlockSize;
// dimension handling
- const ScreenDim * const _dimTable;
+ const ScreenDim *const _dimTable;
ScreenDim **_customDimTable;
const int _dimTableCount;
int _curDimIndex;