Mercurial > hg > openttd
diff src/main_gui.cpp @ 9301:686aa69d2fcd draft
(svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sun, 18 May 2008 20:40:30 +0000 (2008-05-18) |
parents | 3b3f13cb6db6 |
children | 5287277c4972 |
line wrap: on
line diff
--- a/src/main_gui.cpp +++ b/src/main_gui.cpp @@ -217,7 +217,7 @@ struct MainWindow : Window { - MainWindow(int width, int height) : Window(0, 0, width, height, NULL, WC_MAIN_WINDOW, NULL) + MainWindow(int width, int height) : Window(0, 0, width, height, WC_MAIN_WINDOW, NULL) { InitializeWindowViewport(this, 0, 0, width, height, TileXY(32, 32), ZOOM_LVL_VIEWPORT); }