1
0
Fork 0

(svn r23003) -Fix (r22999): Missing semicolon.

release/1.2
michi_cc 2011-10-04 22:12:43 +00:00
parent 19f351c589
commit 8c4c616cfe
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ bool VideoDriver_SDL::ToggleFullscreen(bool fullscreen)
bool VideoDriver_SDL::AfterBlitterChange()
{
return this->ChangeResolution(_screen.width, _screen.height)
return this->ChangeResolution(_screen.width, _screen.height);
}
#endif /* WITH_SDL */