aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 082514fe54..3cf68ed366 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -366,7 +366,6 @@ public:
void clearClickedStatus();
// Misc utility functions
- void checkRange(int max, int min, int no, const char *str) const;
const char *getExeName() const { return _exe_name; }
const char *getGameDataPath() const;
@@ -384,7 +383,6 @@ public:
void pauseGame();
void restart();
void shutDown();
- void setOptions(void);
/** We keep running until this is set to true. */
bool _quit;
@@ -1252,5 +1250,7 @@ int normalizeAngle(int angle);
int fromSimpleDir(int dirtype, int dir);
int toSimpleDir(int dirtype, int dir);
+void checkRange(int max, int min, int no, const char *str);
+
#endif