diff options
author | Eugene Sandulenko | 2019-11-07 00:31:31 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-13 22:07:08 +0100 |
commit | 8ad0a0fd6aa436803a57f7e2219aa328c1f073d1 (patch) | |
tree | 59a02d42e11776548716a0d8737f01a8927cd680 /engines | |
parent | 24c52e32aef31123d44a53dcfc6af561208d67a2 (diff) | |
download | scummvm-rg350-8ad0a0fd6aa436803a57f7e2219aa328c1f073d1.tar.gz scummvm-rg350-8ad0a0fd6aa436803a57f7e2219aa328c1f073d1.tar.bz2 scummvm-rg350-8ad0a0fd6aa436803a57f7e2219aa328c1f073d1.zip |
GRIFFON: Use smaller data type for static array
Diffstat (limited to 'engines')
-rw-r--r-- | engines/griffon/logic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/griffon/logic.cpp b/engines/griffon/logic.cpp index f30de80d16..d1c3d8c16c 100644 --- a/engines/griffon/logic.cpp +++ b/engines/griffon/logic.cpp @@ -55,7 +55,7 @@ namespace Griffon { */ // element tile locations -const int elementmap[15][20] = { +const int8 elementmap[15][20] = { { 2, 2, 2, 2, -1, -1, -1, 2, 2, 2, 2, 2, 2, -1, -1, -1, -1, -1, -1, -1 }, { 2, -1, -1, -1, -1, -1, -1, 2, 2, 2, 2, 2, 2, -1, -1, -1, -1, -1, -1, -1 }, { 2, -1, 2, 2, -1, -1, -1, 2, 2, 2, 2, 2, 2, -1, -1, -1, -1, -1, -1, -1 }, |