diff --git a/Dialogs.rc b/Dialogs.rc index 882bd1c..781658b 100644 --- a/Dialogs.rc +++ b/Dialogs.rc @@ -47,5 +47,7 @@ IDI_ICON1 ICON "FatB3dIcon.ico" // // Manifest resources // +#ifndef _DEBUG LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 1 RT_MANIFEST ".\\Blocks3D.exe.manifest" +#endif \ No newline at end of file diff --git a/src/source/main.cpp b/src/source/main.cpp index 541355c..6eade86 100644 --- a/src/source/main.cpp +++ b/src/source/main.cpp @@ -148,7 +148,9 @@ LRESULT CALLBACK G3DProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) int main(int argc, char** argv) { +#ifndef _DEBUG try{ +#endif hresult = OleInitialize(NULL); /* IInternetSecurityManager *pSecurityMgr; @@ -214,10 +216,12 @@ int main(int argc, char** argv) { Globals::mainHwnd = hwndMain; Application app = Application(hwndMain); app.run(); +#ifndef _DEBUG } catch(...) { OnError(-1); } +#endif return 0; }