mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
Compilation fix
This commit is contained in:
parent
9fc7197c4f
commit
fd7a0950a7
1 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@ public:
|
||||||
std::string m_path;
|
std::string m_path;
|
||||||
std::string m_elf_path;
|
std::string m_elf_path;
|
||||||
std::string m_title_id;
|
std::string m_title_id;
|
||||||
u32 m_ppu_thr_stop;
|
u32 m_cpu_thr_stop;
|
||||||
s32 m_sdk_version;
|
s32 m_sdk_version;
|
||||||
|
|
||||||
Emulator();
|
Emulator();
|
||||||
|
@ -168,7 +168,7 @@ public:
|
||||||
|
|
||||||
void SetPPUThreadStop(u32 addr)
|
void SetPPUThreadStop(u32 addr)
|
||||||
{
|
{
|
||||||
m_ppu_thr_stop = addr;
|
m_cpu_thr_stop = addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
EmuInfo& GetInfo() { return m_info; }
|
EmuInfo& GetInfo() { return m_info; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue