Remove useless void.

This commit is contained in:
Mark de Wever 2008-09-26 17:52:26 +00:00
parent 0600436e9a
commit 47c83520e9
2 changed files with 2 additions and 2 deletions

View file

@ -437,7 +437,7 @@ int CVideo::mustLock()
return SDL_MUSTLOCK(frameBuffer);
}
surface CVideo::getSurface( void )
surface CVideo::getSurface()
{
return frameBuffer;
}

View file

@ -72,7 +72,7 @@ class CVideo {
void blit_surface(int x, int y, surface surf, SDL_Rect* srcrect=NULL, SDL_Rect* clip_rect=NULL);
void flip();
surface getSurface( void );
surface getSurface();
bool isFullScreen() const;