From 6da56ee87ed7131b0c8e47d8924e5305ea8c0dd2 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 18 May 2008 20:40:30 +0000 Subject: (svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors. --- src/main_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main_gui.cpp') diff --git a/src/main_gui.cpp b/src/main_gui.cpp index 36cda036b..6eaab74e6 100644 --- a/src/main_gui.cpp +++ b/src/main_gui.cpp @@ -217,7 +217,7 @@ extern void UpdateAllStationVirtCoord(); 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); } -- cgit v1.2.3-54-g00ecf