diff options
author | Johannes Schickel | 2012-02-13 23:40:24 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-02-13 23:42:25 +0100 |
commit | ad9fdfd3904a78da10cbd3f8e0c7358b9d5d4d8b (patch) | |
tree | bb6306a300ee59f6878f6dddef11718113fc8d39 /engines/kyra | |
parent | 29919077cdf0f936b3ec8bba901b6b08c6ecd774 (diff) | |
download | scummvm-rg350-ad9fdfd3904a78da10cbd3f8e0c7358b9d5d4d8b.tar.gz scummvm-rg350-ad9fdfd3904a78da10cbd3f8e0c7358b9d5d4d8b.tar.bz2 scummvm-rg350-ad9fdfd3904a78da10cbd3f8e0c7358b9d5d4d8b.zip |
KYRA: Silence some icpc warnings by making a member array of KyraRpgGUISettings non-const.
All instances are const anyway, thus this should be a safe way to silence
the warning.
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/kyra_rpg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/kyra_rpg.h b/engines/kyra/kyra_rpg.h index a1b9b4c332..b5530a9a81 100644 --- a/engines/kyra/kyra_rpg.h +++ b/engines/kyra/kyra_rpg.h @@ -87,9 +87,9 @@ struct KyraRpgGUISettings { uint16 width; uint16 height; int waitReserve; - const uint16 waitX[2]; - const uint8 waitY[2]; - const uint16 waitWidth[2]; + uint16 waitX[2]; + uint8 waitY[2]; + uint16 waitWidth[2]; } buttons; struct Colors { |