aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/game.h
diff options
context:
space:
mode:
authorStrangerke2012-06-18 08:24:33 +0200
committerStrangerke2012-06-18 08:24:33 +0200
commite8a6f61f8815fcf36e7a43383695c74b8925993f (patch)
tree26f532bc477fe29ebe304b262af69ceb7ef931d2 /engines/tony/game.h
parentbb55045cc85e1c9b70bd7267de0b578e6662725b (diff)
downloadscummvm-rg350-e8a6f61f8815fcf36e7a43383695c74b8925993f.tar.gz
scummvm-rg350-e8a6f61f8815fcf36e7a43383695c74b8925993f.tar.bz2
scummvm-rg350-e8a6f61f8815fcf36e7a43383695c74b8925993f.zip
TONY: Remove useless void in function declaration
Diffstat (limited to 'engines/tony/game.h')
-rw-r--r--engines/tony/game.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/tony/game.h b/engines/tony/game.h
index 64f4fb8e30..e231287c0f 100644
--- a/engines/tony/game.h
+++ b/engines/tony/game.h
@@ -90,12 +90,12 @@ public:
/**
* Initialization
*/
- void init(void);
+ void init();
/**
* Deinitialization
*/
- void close(void);
+ void close();
/**
* Process a frame
@@ -130,7 +130,7 @@ public:
updateCursor();
}
- PointerType getSpecialPointer(void) {
+ PointerType getSpecialPointer() {
return (PointerType)_nCurSpecialPointer;
}
@@ -145,7 +145,7 @@ public:
/**
* Return the current action to be applied according to the pointer
*/
- int curAction(void);
+ int curAction();
/**
* Show the cursor
@@ -318,12 +318,12 @@ protected:
// Initialization and state change
void initState(CORO_PARAM);
- void closeState(void);
+ void closeState();
void changeState(CORO_PARAM, OptionScreenState newState);
// Repaint the options menu
void refreshAll(CORO_PARAM);
- void refreshThumbnails(void);
+ void refreshThumbnails();
};
} // End of namespace Tony