[Project64] Clean up some of the includes

This commit is contained in:
zilmar 2016-01-05 16:58:31 +11:00
parent 860cc53e87
commit 96712e6042
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
* * * *
****************************************************************************/ ****************************************************************************/
#include "stdafx.h" #include "stdafx.h"
#include "ProfilingClass.h" #include <Project64-core/N64System/ProfilingClass.h>
#include <Common/LogClass.h> #include <Common/LogClass.h>
enum { MAX_FRAMES = 13 }; enum { MAX_FRAMES = 13 };

View File

@ -10,7 +10,7 @@
****************************************************************************/ ****************************************************************************/
#pragma once #pragma once
#include "../Settings/GameSettings.h" #include <Project64-core/Settings/GameSettings.h>
class CSpeedLimiter : class CSpeedLimiter :
private CGameSettings private CGameSettings

View File

@ -11,7 +11,7 @@
#include "stdafx.h" #include "stdafx.h"
#include <Project64-core/N64System/SystemGlobals.h> #include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64Class.h> #include <Project64-core/N64System/N64Class.h>
#include "GameSettings.h" #include <Project64-core/Settings/GameSettings.h>
bool CGameSettings::m_bSMM_StoreInstruc; bool CGameSettings::m_bSMM_StoreInstruc;
bool CGameSettings::m_bSMM_Protect; bool CGameSettings::m_bSMM_Protect;