From a167eed2c1b85e15940417113ed85d7cd9a505d1 Mon Sep 17 00:00:00 2001 From: alexsandulescu Date: Sat, 17 Jul 2021 01:48:46 +0300 Subject: [PATCH] fixed bug --- r5dev/include/overlay.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/include/overlay.h b/r5dev/include/overlay.h index 6254f3b1..974a6171 100644 --- a/r5dev/include/overlay.h +++ b/r5dev/include/overlay.h @@ -41,9 +41,9 @@ public: } CurrentSection; enum class EHostStatus { + NotHosting, WaitingForStateChange, Hosting, - NotHosting, ConnectedToSomeoneElse }; @@ -71,7 +71,7 @@ public: std::string* SelectedMap = nullptr; char ServerNameBuffer[64] = { 0 }; bool StartAsDedi; - EHostStatus HostingStatus = EHostStatus::WaitingForStateChange; + EHostStatus HostingStatus = EHostStatus::NotHosting; void RefreshServerList();