aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tinsel/object.cpp')
-rw-r--r--engines/tinsel/object.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tinsel/object.cpp b/engines/tinsel/object.cpp
index a308745743..9de8202795 100644
--- a/engines/tinsel/object.cpp
+++ b/engines/tinsel/object.cpp
@@ -48,7 +48,7 @@ static int numObj = 0;
static int maxObj = 0;
#endif
-void FreeObjectList(void) {
+void FreeObjectList() {
if (objectList) {
free(objectList);
objectList = NULL;
@@ -59,7 +59,7 @@ void FreeObjectList(void) {
* Kills all objects and places them on the free list.
*/
-void KillAllObjects(void) {
+void KillAllObjects() {
int i;
#ifdef DEBUG
@@ -95,7 +95,7 @@ void KillAllObjects(void) {
* Shows the maximum number of objects used at once.
*/
-void ObjectStats(void) {
+void ObjectStats() {
printf("%i objects of %i used.\n", maxObj, NUM_OBJECTS);
}
#endif
@@ -103,7 +103,7 @@ void ObjectStats(void) {
/**
* Allocate a object from the free list.
*/
-OBJECT *AllocObject(void) {
+OBJECT *AllocObject() {
OBJECT *pObj = pFreeObjects; // get a free object
// check for no free objects