aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/custom.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-18 08:24:33 +0200
committerStrangerke2012-06-18 08:24:33 +0200
commite8a6f61f8815fcf36e7a43383695c74b8925993f (patch)
tree26f532bc477fe29ebe304b262af69ceb7ef931d2 /engines/tony/custom.cpp
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/custom.cpp')
-rw-r--r--engines/tony/custom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tony/custom.cpp b/engines/tony/custom.cpp
index e91d6873a4..016c84ab39 100644
--- a/engines/tony/custom.cpp
+++ b/engines/tony/custom.cpp
@@ -106,7 +106,7 @@ const char *jingleFileNames[] = {
};
-void ReapplyChangedHotspot(void) {
+void ReapplyChangedHotspot() {
int i;
for (i = 0; i < GLOBALS._curChangedHotspot; i++)
GLOBALS._loc->getItemFromCode(GLOBALS._changedHotspot[i]._dwCode)->changeHotspot(RMPoint(GLOBALS._changedHotspot[i]._nX, GLOBALS._changedHotspot[i]._nY));
@@ -140,7 +140,7 @@ void LoadChangedHotspot(Common::InSaveFile *f) {
* AddInventory -> theEngine.AddInventory()
*/
-void MCharResetCodes(void) {
+void MCharResetCodes() {
for (int i = 0; i < 10; i++)
GLOBALS._mCharacter[i]._item = GLOBALS._loc->getItemFromCode(GLOBALS._mCharacter[i]._code);
for (int i = 0; i < 10; i++)