From: Rémi Bernon rbernon@codeweavers.com
Otherwise we'll disable evdev backend too.
Fixes: 3394379fa7bfdc5010a8963c566086254488c996 --- dlls/winebus.sys/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winebus.sys/main.c b/dlls/winebus.sys/main.c index a9f634a8e42..ba8603204d4 100644 --- a/dlls/winebus.sys/main.c +++ b/dlls/winebus.sys/main.c @@ -1129,7 +1129,7 @@ static NTSTATUS sdl_driver_init(void) .init_code = sdl_init, .wait_code = sdl_wait, }; - if (options.disable_sdl) return STATUS_SUCCESS; + if (options.disable_sdl) return STATUS_NOT_SUPPORTED; return bus_main_thread_start(&bus); }