diff options
Diffstat (limited to '')
-rw-r--r-- | src/skel/win/win.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/skel/win/win.cpp b/src/skel/win/win.cpp index cc106e39..d8e54d80 100644 --- a/src/skel/win/win.cpp +++ b/src/skel/win/win.cpp @@ -2508,9 +2508,11 @@ WinMain(HINSTANCE instance, { if ( gGameState == GS_PLAYING_GAME ) CGame::ShutDown(); +#ifndef MASTER else if ( gGameState == GS_ANIMVIEWER ) CAnimViewer::Shutdown(); - +#endif + CTimer::Stop(); if ( FrontEndMenuManager.m_bFirstTime == true ) @@ -2533,8 +2535,10 @@ WinMain(HINSTANCE instance, if ( gGameState == GS_PLAYING_GAME ) CGame::ShutDown(); +#ifndef MASTER else if ( gGameState == GS_ANIMVIEWER ) CAnimViewer::Shutdown(); +#endif DMAudio.Terminate(); |