From bbb83f132b23b6a45eb6d979172264c1587f227a Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 19 Nov 2012 13:05:12 +0100 Subject: 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' --- engines/kyra/lol.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/kyra/lol.h') diff --git a/engines/kyra/lol.h b/engines/kyra/lol.h index be2d83357d..d8df6b6703 100644 --- a/engines/kyra/lol.h +++ b/engines/kyra/lol.h @@ -391,7 +391,7 @@ private: uint8 _outroShapeTable[256]; // TODO: Consider moving these tables to kyra.dat - static const char * const _outroShapeFileTable[]; + static const char *const _outroShapeFileTable[]; static const uint8 _outroFrameTable[]; static const int16 _outroRightMonsterPos[]; @@ -814,7 +814,7 @@ private: void decodeSjis(const char *src, char *dst); int decodeCyrillic(const char *src, char *dst); - static const char * const _languageExt[]; + static const char *const _languageExt[]; // graphics void setupScreenDims(); @@ -1013,8 +1013,8 @@ private: uint8 *_tempBuffer5120; - const char * const *_levelDatList; - const char * const *_levelShpList; + const char *const *_levelDatList; + const char *const *_levelShpList; const int8 *_dscWalls; -- cgit v1.2.3