diff options
Diffstat (limited to 'src/engine/client/client.cpp')
| -rw-r--r-- | src/engine/client/client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/client/client.cpp b/src/engine/client/client.cpp index ac15d128..82e79a85 100644 --- a/src/engine/client/client.cpp +++ b/src/engine/client/client.cpp @@ -1856,7 +1856,8 @@ void CClient::Run() } // update input - Input()->Update(); + if(Input()->Update()) + break; // SDL_QUIT // update sound Sound()->Update(); |