mirror of
https://github.com/halpz/re3.git
synced 2025-06-26 21:06:19 +00:00
don't CoUninitialize for NO_MOVIES
This commit is contained in:
@ -2227,10 +2227,9 @@ WinMain(HINSTANCE instance,
|
||||
|
||||
case GS_INIT_INTRO_MPEG:
|
||||
{
|
||||
#ifndef NO_MOVIES
|
||||
CloseClip();
|
||||
|
||||
#ifndef FIX_BUGS
|
||||
CoUninitialize(); // CoUninitialize should only be called at the shutdown of a program, and by then it doesn't matter
|
||||
CoUninitialize();
|
||||
#endif
|
||||
|
||||
if ( CMenuManager::OS_Language == LANG_FRENCH || CMenuManager::OS_Language == LANG_GERMAN )
|
||||
@ -2265,9 +2264,9 @@ WinMain(HINSTANCE instance,
|
||||
|
||||
case GS_INIT_ONCE:
|
||||
{
|
||||
#ifndef NO_MOVIES
|
||||
CloseClip();
|
||||
#ifndef FIX_BUGS
|
||||
CoUninitialize(); // CoUninitialize should only be called at the shutdown of a program, and by then it doesn't matter
|
||||
CoUninitialize();
|
||||
#endif
|
||||
|
||||
#ifdef FIX_BUGS
|
||||
|
Reference in New Issue
Block a user