aboutsummaryrefslogtreecommitdiff
path: root/client/src/main.cpp
diff options
context:
space:
mode:
authorauth12 <[email protected]>2020-07-24 16:26:07 -0700
committerauth12 <[email protected]>2020-07-24 16:26:07 -0700
commit10a1f83f57d61cd6776eaf8dbcefd4814a63b649 (patch)
tree31466d7bf480c8b489b3b1f4b82e881b858e4de5 /client/src/main.cpp
parentInjection process changes and server improvements. (diff)
downloadloader-10a1f83f57d61cd6776eaf8dbcefd4814a63b649.tar.xz
loader-10a1f83f57d61cd6776eaf8dbcefd4814a63b649.zip
Compile fix.
Fixed x64 image support server side.
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();
}