@@ -3312,15 +3312,10 @@ void VMManager::WarnAboutUnsafeSettings()
33123312 }
33133313 if (!EmuConfig.Cpu .Recompiler .EnableFastmem )
33143314 append (ICON_FA_EXCLAMATION_CIRCLE, TRANSLATE_SV (" VMManager" , " Fastmem is not enabled, this will reduce performance." ));
3315- if (EmuConfig.Speedhacks .vuThread )
3316- {
3317- append (ICON_FA_EXCLAMATION_CIRCLE,
3318- TRANSLATE_SV (" VMManager" , " MTVU (Multi-Threaded VU1) is enabled, this will break visuals in PaRappa 2 (black box, noodles)" ));
3319- }
3320- if (EmuConfig.Speedhacks .vu1Instant )
3315+ if (!EmuConfig.Speedhacks .vu1Instant )
33213316 {
33223317 append (ICON_FA_EXCLAMATION_CIRCLE,
3323- TRANSLATE_SV (" VMManager" , " Instant VU1 is enabled , this will break visuals in PaRappa 2 (black box, noodles) " ));
3318+ TRANSLATE_SV (" VMManager" , " Instant VU1 is disabled , this may reduce performance. " ));
33243319 }
33253320 if (!EmuConfig.Speedhacks .vuFlagHack )
33263321 {
@@ -3475,18 +3470,16 @@ void VMManager::SetHardwareDependentDefaultSettings(SettingsInterface& si)
34753470
34763471 Console.WriteLn (fmt::format (" CPU cores count: {}" , core_count));
34773472
3478- /*
34793473 if (core_count >= 3 )
34803474 {
34813475 Console.WriteLn (" Enabling MTVU." );
34823476 si.SetBoolValue (" EmuCore/Speedhacks" , " vuThread" , true );
34833477 }
34843478 else
3485- {*/
3486- // Console.WriteLn(" Disabling MTVU.");
3487- Console.WriteLn (" Not enabling MTVU because it breaks PaRappa 2 (black box/noodles" );
3488- // si.SetBoolValue("EmuCore/Speedhacks", "vuThread", false);
3489- // }
3479+ {
3480+ Console.WriteLn (" Disabling MTVU." );
3481+ si.SetBoolValue (" EmuCore/Speedhacks" , " vuThread" , false );
3482+ }
34903483
34913484 const int extra_threads = (core_count > 3 ) ? 3 : 2 ;
34923485 Console.WriteLn (fmt::format (" Setting Extra Software Rendering Threads to {}." , extra_threads));
0 commit comments