diff options
author | Max Horn | 2002-12-25 00:36:04 +0000 |
---|---|---|
committer | Max Horn | 2002-12-25 00:36:04 +0000 |
commit | ce6913cf3666f9234d5b8a0b40e2959b8f7754a5 (patch) | |
tree | 00a08e02f3b226a461d5b48f63e97bc285291740 /common | |
parent | 7cb69f7fa2f17eca5a1ad08162ce9e5e5a2cb5e4 (diff) | |
download | scummvm-rg350-ce6913cf3666f9234d5b8a0b40e2959b8f7754a5.tar.gz scummvm-rg350-ce6913cf3666f9234d5b8a0b40e2959b8f7754a5.tar.bz2 scummvm-rg350-ce6913cf3666f9234d5b8a0b40e2959b8f7754a5.zip |
fix -pedantic warnings
svn-id: r6108
Diffstat (limited to 'common')
-rw-r--r-- | common/gameDetector.h | 2 | ||||
-rw-r--r-- | common/system.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/common/gameDetector.h b/common/gameDetector.h index 643fbe1cc2..98f6b8e086 100644 --- a/common/gameDetector.h +++ b/common/gameDetector.h @@ -56,7 +56,7 @@ enum GameId { /* Simon the Sorcerer */ GID_SIMON_FIRST = 20, - GID_SIMON_LAST = GID_SIMON_FIRST + 8, + GID_SIMON_LAST = GID_SIMON_FIRST + 8 }; enum GameFeatures { diff --git a/common/system.h b/common/system.h index 296fb072c8..dff91ee609 100644 --- a/common/system.h +++ b/common/system.h @@ -56,13 +56,13 @@ public: EVENT_RBUTTONDOWN = 6, EVENT_RBUTTONUP = 7, EVENT_WHEELUP = 8, - EVENT_WHEELDOWN = 9, + EVENT_WHEELDOWN = 9 }; enum { KBD_CTRL = 1, KBD_ALT = 2, - KBD_SHIFT = 4, + KBD_SHIFT = 4 }; enum { @@ -83,7 +83,7 @@ public: enum { SOUND_8BIT = 0, - SOUND_16BIT = 1, + SOUND_16BIT = 1 }; // Set colors of the palette |