aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/gfxengine.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/gfxengine.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/gfxengine.cpp')
-rw-r--r--engines/tony/gfxengine.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/tony/gfxengine.cpp b/engines/tony/gfxengine.cpp
index 08eff0a991..0785ec534c 100644
--- a/engines/tony/gfxengine.cpp
+++ b/engines/tony/gfxengine.cpp
@@ -353,7 +353,7 @@ SKIPCLICKSINISTRO:
CORO_END_CODE;
}
-void RMGfxEngine::initCustomDll(void) {
+void RMGfxEngine::initCustomDll() {
setupGlobalVars(&_tony, &_point, &_vm->_theBoxes, &_loc, &_inv, &_input);
}
@@ -522,7 +522,7 @@ void RMGfxEngine::init() {
_tony.executeAction(20, 1, 0);
}
-void RMGfxEngine::close(void) {
+void RMGfxEngine::close() {
_bigBuf.clearOT();
_inter.close();
@@ -538,37 +538,37 @@ void RMGfxEngine::switchFullscreen(bool bFull) {
void RMGfxEngine::GDIControl(bool bCon) {
}
-void RMGfxEngine::enableInput(void) {
+void RMGfxEngine::enableInput() {
_bInput = true;
}
-void RMGfxEngine::disableInput(void) {
+void RMGfxEngine::disableInput() {
_bInput = false;
_inter.reset();
}
-void RMGfxEngine::enableMouse(void) {
+void RMGfxEngine::enableMouse() {
_bAlwaysDrawMouse = true;
}
-void RMGfxEngine::disableMouse(void) {
+void RMGfxEngine::disableMouse() {
_bAlwaysDrawMouse = false;
}
-void RMGfxEngine::freeze(void) {
+void RMGfxEngine::freeze() {
g_system->lockMutex(_csMainLoop);
}
-void RMGfxEngine::unfreeze(void) {
+void RMGfxEngine::unfreeze() {
g_system->unlockMutex(_csMainLoop);
}
void CharsSaveAll(Common::OutSaveFile *f);
void CharsLoadAll(Common::InSaveFile *f);
-void MCharResetCodes(void);
+void MCharResetCodes();
void SaveChangedHotspot(Common::OutSaveFile *f);
void LoadChangedHotspot(Common::InSaveFile *f);
-void ReapplyChangedHotspot(void);
+void ReapplyChangedHotspot();
void RestoreMusic(CORO_PARAM);
void SaveMusic(Common::OutSaveFile *f);
@@ -856,7 +856,7 @@ void RMGfxEngine::initWipe(int type) {
_rcWipeEllipse = Common::Rect(320 - FSTEP, 240 - FSTEP, 320 + FSTEP, 240 + FSTEP);
}
-void RMGfxEngine::closeWipe(void) {
+void RMGfxEngine::closeWipe() {
_bWiping = false;
}