mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-26 04:18:36 -06:00
Compilation fix
This commit is contained in:
parent
cd39256361
commit
fe53f6f2d7
@ -115,7 +115,7 @@ public:
|
||||
{
|
||||
for (u32 i = addr / 4096; i <= (addr + size - 1) / 4096; i++)
|
||||
{
|
||||
if (m_pages[i] != 0) return false; // TODO: define page parameters
|
||||
if (!m_pages[i]) return false; // TODO: define page parameters
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -5,7 +5,6 @@
|
||||
#include "Emu/System.h"
|
||||
#include "RSXThread.h"
|
||||
|
||||
#include "Emu/Cell/PPUThread.h"
|
||||
#include "Emu/SysCalls/Callback.h"
|
||||
#include "Emu/SysCalls/lv2/sys_time.h"
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
#pragma once
|
||||
#include "Emu/Cell/PPUThread.h"
|
||||
|
||||
namespace vm
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user