File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -343,8 +343,8 @@ void HandleNotUsedMainMenu ( void )
343343 if ( strFullscreenStyle == " 1" )
344344 {
345345 AddReportLog ( 9315 , " Loader - HandleNotUsedMainMenu - Already Borderless window" );
346- return ;
347346 }
347+ else
348348 if ( !strWindowed.empty () && !strFullscreenStyle.empty ())
349349 {
350350 if ( strWindowed == " 0" && strFullscreenStyle == " 0" ) // 0=FULLSCREEN_STANDARD
@@ -375,6 +375,19 @@ void HandleNotUsedMainMenu ( void )
375375 AddReportLog ( 9312 , " Loader - HandleNotUsedMainMenu - Set Borderless window" );
376376 }
377377 }
378+
379+ // Check if Evolve is active
380+ for ( auto processId : MyEnumProcesses ( true ) )
381+ {
382+ SString strFilename = ExtractFilename ( GetProcessPathFilename ( processId ) );
383+ if ( strFilename.BeginsWithI ( " Evolve" ) )
384+ {
385+ SString strMessage = _ (" Are you having problems running MTA:SA?.\n\n Try disabling the following products for GTA and MTA:" );
386+ strMessage += " \n\n Evolve" ;
387+ DisplayErrorMessageBox ( strMessage, _E (" CL43" ), " not-used-menu-evolve" );
388+ break ;
389+ }
390+ }
378391}
379392
380393
You can’t perform that action at this time.
0 commit comments