Properly add RWMutex

This commit is contained in:
Lion Kortlepel
2020-11-08 22:39:20 +01:00
parent 747e948339
commit 7ab37b7fe9
3 changed files with 23 additions and 8 deletions

View File

@@ -27,8 +27,9 @@ void HandleInput(const std::string& cmd) {
std::cout << std::endl;
if (cmd == "exit") {
_Exit(0);
} else
} else {
LuaConsole->Execute(cmd);
}
}
void ProcessOut() {