HW: Remove unnecessary "../HW/" in include paths

This commit is contained in:
Jasper St. Pierre 2013-12-31 14:03:17 -05:00
parent 70d4d973f9
commit b6ad8bd712
4 changed files with 8 additions and 8 deletions

View file

@ -60,7 +60,7 @@ This file mainly deals with the [Drive I/F], however [AIDFR] controls
#include "DVDInterface.h"
#include "../PowerPC/PowerPC.h"
#include "../CoreTiming.h"
#include "../HW/SystemTimers.h"
#include "SystemTimers.h"
namespace AudioInterface
{

View file

@ -6,7 +6,7 @@
#include "ChunkFile.h"
#include "../ConfigManager.h"
#include "../CoreTiming.h"
#include "../HW/SystemTimers.h"
#include "SystemTimers.h"
#include "StreamADPCM.h" // Core
#include "DVDInterface.h"

View file

@ -61,11 +61,11 @@ IPC_HLE_PERIOD: For the Wiimote this is the call schedule:
#include "Atomic.h"
#include "../PatchEngine.h"
#include "SystemTimers.h"
#include "../HW/DSP.h"
#include "../HW/AudioInterface.h"
#include "../HW/VideoInterface.h"
#include "../HW/SI.h"
#include "../HW/EXI_DeviceIPL.h"
#include "DSP.h"
#include "AudioInterface.h"
#include "VideoInterface.h"
#include "SI.h"
#include "EXI_DeviceIPL.h"
#include "../PowerPC/PowerPC.h"
#include "../CoreTiming.h"
#include "../ConfigManager.h"

View file

@ -11,7 +11,7 @@
#include "VideoInterface.h"
#include "Memmap.h"
#include "../CoreTiming.h"
#include "../HW/SystemTimers.h"
#include "SystemTimers.h"
#include "StringUtil.h"
#include "VideoBackendBase.h"