diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/game.h b/src/game.h index 6fc42be42..5ea45863a 100644 --- a/src/game.h +++ b/src/game.h @@ -83,7 +83,7 @@ class Game void handleMove(); - void handleActive(SDL_Event &event); + void handleActive(const SDL_Event &event); void changeMap(const std::string &mapName); @@ -107,17 +107,17 @@ class Game static void closeDialogs(); - void videoResized(int width, int height); + void videoResized(const int width, const int height) const; - bool getValidSpeed() + bool getValidSpeed() const { return mValidSpeed; } static bool createScreenshot(); - static bool saveScreenshot(SDL_Surface *screenshot); + static bool saveScreenshot(SDL_Surface *const screenshot); private: - void updateHistory(SDL_Event &event); + void updateHistory(const SDL_Event &event); void checkKeys(); |