diff options
author | rubidium <rubidium@openttd.org> | 2008-05-08 11:31:41 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-08 11:31:41 +0000 |
commit | 2eef026fe35b9236606062f7d8a59d5661a5c748 (patch) | |
tree | 34abcc3662d6f35a9ace2d7f77586e68242b96e7 /src/console.cpp | |
parent | d3650ecb3a42529c720634dcdc982d046a47a1ee (diff) | |
download | openttd-2eef026fe35b9236606062f7d8a59d5661a5c748.tar.xz |
(svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.
Diffstat (limited to 'src/console.cpp')
-rw-r--r-- | src/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console.cpp b/src/console.cpp index db2902690..5e80134a4 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -318,7 +318,7 @@ void IConsoleSwitch() { switch (_iconsole_mode) { case ICONSOLE_CLOSED: { - Window *w = AllocateWindowDesc(&_iconsole_window_desc); + Window *w = new Window(&_iconsole_window_desc); w->height = _screen.height / 3; w->width = _screen.width; _iconsole_mode = ICONSOLE_OPENED; |