From 10a1f83f57d61cd6776eaf8dbcefd4814a63b649 Mon Sep 17 00:00:00 2001 From: auth12 <67507608+auth12@users.noreply.github.com> Date: Fri, 24 Jul 2020 16:26:07 -0700 Subject: Compile fix. Fixed x64 image support server side. --- client/src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'client/src/main.cpp') diff --git a/client/src/main.cpp b/client/src/main.cpp index 441118a..718b728 100644 --- a/client/src/main.cpp +++ b/client/src/main.cpp @@ -173,7 +173,10 @@ int main(int argc, char* argv[]) { } - while (client.state != tcp::client_state::injected) { + while (client) { std::this_thread::sleep_for(std::chrono::seconds(1)); } + + + std::cin.get(); } -- cgit v1.2.3