diff options
Diffstat (limited to 'engines/tinsel')
-rw-r--r-- | engines/tinsel/cliprect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tinsel/cliprect.h b/engines/tinsel/cliprect.h index 96b4b3314e..28a66c312c 100644 --- a/engines/tinsel/cliprect.h +++ b/engines/tinsel/cliprect.h @@ -40,7 +40,7 @@ typedef Common::List<Common::Rect> RectList; |* Clip Rect Function Prototypes *| \*----------------------------------------------------------------------*/ -void ResetClipRect(void); // Resets the clipping rectangle allocator +void ResetClipRect(); // Resets the clipping rectangle allocator void AddClipRect( // Allocate a clipping rectangle from the free list const Common::Rect &pClip); // clip rectangle dimensions to allocate @@ -64,7 +64,7 @@ void FindMovingObjects( // Creates clipping rectangles for all the objects that bool bVelocity, // when set, objects pos is updated with velocity bool bScrolled); // when set, playfield has scrolled -void MergeClipRect(void); // Merges any clipping rectangles that overlap +void MergeClipRect(); // Merges any clipping rectangles that overlap void UpdateClipRect( // Redraws all objects within this clipping rectangle OBJECT *pObjList, // object list to draw |