From fd7a0950a78beb9169d3a995e62bf030e6933b75 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 30 Nov 2014 15:08:23 +0300 Subject: [PATCH] Compilation fix --- rpcs3/Emu/System.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/System.h b/rpcs3/Emu/System.h index 63469f3467..36d8dd4011 100644 --- a/rpcs3/Emu/System.h +++ b/rpcs3/Emu/System.h @@ -113,7 +113,7 @@ public: std::string m_path; std::string m_elf_path; std::string m_title_id; - u32 m_ppu_thr_stop; + u32 m_cpu_thr_stop; s32 m_sdk_version; Emulator(); @@ -168,7 +168,7 @@ public: void SetPPUThreadStop(u32 addr) { - m_ppu_thr_stop = addr; + m_cpu_thr_stop = addr; } EmuInfo& GetInfo() { return m_info; }