diff --git a/Descent3/winmain.cpp b/Descent3/winmain.cpp index 7131b22b..01c5ffe0 100644 --- a/Descent3/winmain.cpp +++ b/Descent3/winmain.cpp @@ -625,10 +625,12 @@ int PASCAL HandledWinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR szCmdLine, d3 = new oeD3Win32App(OEAPP_CONSOLE, (HInstance)hInst); } else { unsigned int flags = OEAPP_FULLSCREEN; +#ifndef RELEASE // TODO: remove #ifndef when window mode is ready for primetime if (FindArg("-windowed")) { // switch to windowed mode instead flags = OEAPP_WINDOWED; } +#endif d3 = new oeD3Win32App(flags, (HInstance)hInst); }