Remove useless void.
This commit is contained in:
parent
0600436e9a
commit
47c83520e9
2 changed files with 2 additions and 2 deletions
|
@ -437,7 +437,7 @@ int CVideo::mustLock()
|
|||
return SDL_MUSTLOCK(frameBuffer);
|
||||
}
|
||||
|
||||
surface CVideo::getSurface( void )
|
||||
surface CVideo::getSurface()
|
||||
{
|
||||
return frameBuffer;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue