1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-16 02:59:10 +00:00

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

This commit is contained in:
michi_cc
2011-10-04 22:12:43 +00:00
parent 19f351c589
commit 8c4c616cfe

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 */