From 83de2be78a8cf1596daa73bf38e4d96fb60d0274 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 11 Dec 2020 11:54:25 +0100 Subject: [PATCH] [hellfire] StartGame --- Source/diablo.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/diablo.cpp b/Source/diablo.cpp index 3d0f34a43..a3f4f319b 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -457,10 +457,11 @@ BOOL StartGame(BOOL bNewGame, BOOL bSinglePlayer) NetClose(); #ifndef HELLFIRE pfile_create_player_description(0, 0); - } while (gbRunGameResult); #else - } while (gbMaxPlayers == 1 || !gbRunGameResult); + if (gbMaxPlayers == 1) + break; #endif + } while (gbRunGameResult); SNetDestroy(); return gbRunGameResult;