Commit 59398d7c authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

wineconsole: Fallback to window based console if the curses library isn't found.

parent a7e89145
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment