From 01f0abc08afd59c54470dde8e95697175b7022af Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Tue, 13 Oct 2020 09:07:00 +0100 Subject: [PATCH] Fix crash in HandleBootstrap See: #197 --- src/bootstrap_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap_gui.cpp b/src/bootstrap_gui.cpp index d2445c23a4..68d9e5b51a 100644 --- a/src/bootstrap_gui.cpp +++ b/src/bootstrap_gui.cpp @@ -253,7 +253,7 @@ bool HandleBootstrap() if (_exit_game) return false; /* Try to probe the graphics. Should work this time. */ - if (!BaseGraphics::SetSet(nullptr)) goto failure; + if (!BaseGraphics::SetSet("")) goto failure; /* Finally we can continue heading for the menu. */ _game_mode = GM_MENU;