Martin Storsjo : wineconsole: Fallback to window based console if the curses library isn't found.
Module: wine Branch: master Commit: 59398d7ca7e43cc9fe4bfecd5277ce648a181a97 URL: http://source.winehq.org/git/wine.git/?a=commit;h=59398d7ca7e43cc9fe4bfecd52... Author: Martin Storsjo <martin(a)martin.st> Date: Tue Dec 21 14:26:03 2010 +0200 wineconsole: Fallback to window based console if the curses library isn't found. --- programs/wineconsole/curses.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/programs/wineconsole/curses.c b/programs/wineconsole/curses.c index f1cab51..fc0261f 100644 --- a/programs/wineconsole/curses.c +++ b/programs/wineconsole/curses.c @@ -1039,7 +1039,7 @@ static int WCCURSES_MainLoop(struct inner_data* data) enum init_return WCCURSES_InitBackend(struct inner_data* data) { if( !WCCURSES_bind_libcurses() ) - return init_failed; + return init_not_supported; data->private = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct inner_data_curse)); if (!data->private) return init_failed;
participants (1)
-
Alexandre Julliard