aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/mult.cpp
diff options
context:
space:
mode:
authorMax Horn2009-11-02 21:54:57 +0000
committerMax Horn2009-11-02 21:54:57 +0000
commit51933629d1f1a17839ddbb75b2b619effe117abb (patch)
tree7292b23e5ce3fb11e6b2bb360a3befbbf35b64d9 /engines/gob/mult.cpp
parent400ee8c461e8060393b62be639c27dd3820dccd4 (diff)
downloadscummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.gz
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.bz2
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.zip
Changed foo(void) to foo() in almost all non-backend source files
svn-id: r45616
Diffstat (limited to 'engines/gob/mult.cpp')
-rw-r--r--engines/gob/mult.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/gob/mult.cpp b/engines/gob/mult.cpp
index d383d955c7..883f102ef9 100644
--- a/engines/gob/mult.cpp
+++ b/engines/gob/mult.cpp
@@ -109,7 +109,7 @@ Mult::~Mult() {
delete _multData;
}
-void Mult::initAll(void) {
+void Mult::initAll() {
_objects = 0;
_animSurf.reset();
_renderData = 0;
@@ -117,7 +117,7 @@ void Mult::initAll(void) {
_vm->_scenery->init();
}
-void Mult::freeAll(void) {
+void Mult::freeAll() {
freeMult();
for (int i = 0; i < 10; i++) {
@@ -149,12 +149,12 @@ void Mult::freeMult() {
_vm->_draw->freeSprite(22);
}
-void Mult::checkFreeMult(void) {
+void Mult::checkFreeMult() {
if (_multData)
freeMultKeys();
}
-void Mult::zeroMultData(void) {
+void Mult::zeroMultData() {
_multData = 0;
}