mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-01 12:15:27 -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++)
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,7 +5,6 @@
|
|||||||
#include "Emu/System.h"
|
#include "Emu/System.h"
|
||||||
#include "RSXThread.h"
|
#include "RSXThread.h"
|
||||||
|
|
||||||
#include "Emu/Cell/PPUThread.h"
|
|
||||||
#include "Emu/SysCalls/Callback.h"
|
#include "Emu/SysCalls/Callback.h"
|
||||||
#include "Emu/SysCalls/lv2/sys_time.h"
|
#include "Emu/SysCalls/lv2/sys_time.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
#include "Emu/Cell/PPUThread.h"
|
||||||
|
|
||||||
namespace vm
|
namespace vm
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user