From 877c4358d812489916cb07a97b23d91d3add81e6 Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sat, 7 Sep 2019 11:09:45 -0700 Subject: [PATCH] Take care of a typo that only effects pcsx2 if built without superVU. --- pcsx2/gui/AppInit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/AppInit.cpp b/pcsx2/gui/AppInit.cpp index cce934cd34..e44ea51a57 100644 --- a/pcsx2/gui/AppInit.cpp +++ b/pcsx2/gui/AppInit.cpp @@ -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 }