From 59398d7ca7e43cc9fe4bfecd5277ce648a181a97 Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Tue, 21 Dec 2010 14:26:03 +0200 Subject: [PATCH] wineconsole: Fallback to window based console if the curses library isn't found. --- programs/wineconsole/curses.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wineconsole/curses.c b/programs/wineconsole/curses.c index f1cab513e02..fc0261f2c0b 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;