aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/object.h
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/tinsel/object.h
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/tinsel/object.h')
-rw-r--r--engines/tinsel/object.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tinsel/object.h b/engines/tinsel/object.h
index 88854502e7..5725445b62 100644
--- a/engines/tinsel/object.h
+++ b/engines/tinsel/object.h
@@ -117,15 +117,15 @@ struct OBJ_INIT {
|* Object Function Prototypes *|
\*----------------------------------------------------------------------*/
-void KillAllObjects(void); // kill all objects and place them on free list
+void KillAllObjects(); // kill all objects and place them on free list
-void FreeObjectList(void); // free the object list
+void FreeObjectList(); // free the object list
#ifdef DEBUG
-void ObjectStats(void); // Shows the maximum number of objects used at once
+void ObjectStats(); // Shows the maximum number of objects used at once
#endif
-OBJECT *AllocObject(void); // allocate a object from the free list
+OBJECT *AllocObject(); // allocate a object from the free list
void FreeObject( // place a object back on the free list
OBJECT *pFreeObj); // object to free