(svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.

This commit is contained in:
rubidium
2008-05-18 20:40:30 +00:00
parent 9aa69db2e6
commit 6da56ee87e
7 changed files with 10 additions and 13 deletions

View File

@@ -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);
}