aboutsummaryrefslogtreecommitdiff
path: root/client/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/main.cpp')
-rw-r--r--client/src/main.cpp5
1 files changed, 4 insertions, 1 deletions
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();
}