diff options
| author | auth12 <[email protected]> | 2020-07-24 16:26:07 -0700 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-07-24 16:26:07 -0700 |
| commit | 10a1f83f57d61cd6776eaf8dbcefd4814a63b649 (patch) | |
| tree | 31466d7bf480c8b489b3b1f4b82e881b858e4de5 /client/src/main.cpp | |
| parent | Injection process changes and server improvements. (diff) | |
| download | loader-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.cpp | 5 |
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(); } |