Compilation fix

This commit is contained in:
Nekotekina 2014-09-11 23:33:20 +04:00
parent cd39256361
commit fe53f6f2d7
3 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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"

View file

@ -1,4 +1,5 @@
#pragma once
#include "Emu/Cell/PPUThread.h"
namespace vm
{