summaryrefslogtreecommitdiff
path: root/src/main_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-18 20:40:30 +0000
committerrubidium <rubidium@openttd.org>2008-05-18 20:40:30 +0000
commit6da56ee87ed7131b0c8e47d8924e5305ea8c0dd2 (patch)
tree41abfe9b87f469f713f101ff0e28d4bcf1c50545 /src/main_gui.cpp
parent9aa69db2e6352bf81df189c70ba2719bbdc38c31 (diff)
downloadopenttd-6da56ee87ed7131b0c8e47d8924e5305ea8c0dd2.tar.xz
(svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.
Diffstat (limited to 'src/main_gui.cpp')
-rw-r--r--src/main_gui.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}