diff options
author | uruk | 2014-08-11 15:44:55 +0200 |
---|---|---|
committer | uruk | 2014-08-11 15:44:55 +0200 |
commit | 0d47893d5143dac35686890360591558eef7a72a (patch) | |
tree | 62995f74c97afb5d4ab9abb7cc3bddfe01f270a8 /engines/cge2 | |
parent | f8e60e467fdcff8b36eb0bfad2a4c53459462fe6 (diff) | |
download | scummvm-rg350-0d47893d5143dac35686890360591558eef7a72a.tar.gz scummvm-rg350-0d47893d5143dac35686890360591558eef7a72a.tar.bz2 scummvm-rg350-0d47893d5143dac35686890360591558eef7a72a.zip |
CGE2: Make matrixes static constants in makeSpeechBubbleTail().
Diffstat (limited to 'engines/cge2')
-rw-r--r-- | engines/cge2/bitmap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge2/bitmap.cpp b/engines/cge2/bitmap.cpp index 6d38f33b99..01e97ebc53 100644 --- a/engines/cge2/bitmap.cpp +++ b/engines/cge2/bitmap.cpp @@ -396,7 +396,7 @@ void Bitmap::xLatPos(V2D& p) { #define kDesignSize 240 uint8 *Bitmap::makeSpeechBubbleTail(int which, uint8 colorSet[][4]) { - uint8 kSLDesign[kDesignSize] = { + static const uint8 kSLDesign[kDesignSize] = { G G G G G G G G G _ _ _ _ _ _ L G G G G G G G G D _ _ _ _ _ _ L G G G G G G G D _ _ _ _ _ @@ -415,7 +415,7 @@ uint8 *Bitmap::makeSpeechBubbleTail(int which, uint8 colorSet[][4]) { _ _ _ _ _ _ _ _ _ _ _ _ _ _ D }; - uint8 kSRDesign[kDesignSize] = { + static const uint8 kSRDesign[kDesignSize] = { _ _ _ _ _ _ G G G G G G G G G _ _ _ _ _ L G G G G G G G G D _ _ _ _ _ L G G G G G G G D _ |