Changeset - r18164:a50b520828d1
[Not reviewed]
master
0 1 0
michi_cc - 13 years ago 2011-10-04 22:12:43
michi_cc@openttd.org
(svn r23003) -Fix (r22999): Missing semicolon.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/video/sdl_v.cpp
Show inline comments
 
@@ -637,7 +637,7 @@ bool VideoDriver_SDL::ToggleFullscreen(b
 

	
 
bool VideoDriver_SDL::AfterBlitterChange()
 
{
 
	return this->ChangeResolution(_screen.width, _screen.height)
 
	return this->ChangeResolution(_screen.width, _screen.height);
 
}
 

	
 
#endif /* WITH_SDL */
0 comments (0 inline, 0 general)