Take care of a typo that only effects pcsx2 if built without superVU.

This commit is contained in:
arcum42 2019-09-07 11:09:45 -07:00
parent 159ce78680
commit 877c4358d8
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ void Pcsx2App::AllocateCoreStuffs()
#ifndef DISABLE_SVU
recOps.EnableVU0 = recOps.EnableVU0 && m_CpuProviders->IsRecAvailable_SuperVU0();
#else
recOps.EnableVU1 = false;
recOps.EnableVU0 = false;
#endif
}