From 5874a5683e5f186fd66f370bec5bea3af98dabd7 Mon Sep 17 00:00:00 2001 From: DH Date: Sun, 6 Oct 2013 18:41:19 +0300 Subject: [PATCH] Fixed small error. --- rpcs3/Emu/Cell/PPCThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPCThread.cpp b/rpcs3/Emu/Cell/PPCThread.cpp index c57285ae25..47cf5a3805 100644 --- a/rpcs3/Emu/Cell/PPCThread.cpp +++ b/rpcs3/Emu/Cell/PPCThread.cpp @@ -8,7 +8,7 @@ PPCThread* GetCurrentPPCThread() } PPCThread::PPCThread(PPCThreadType type) - : ThreadBase(false, "PPCThread") + : ThreadBase(true, "PPCThread") , m_type(type) , DisAsmFrame(nullptr) , m_dec(nullptr)