Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
HW: Remove unnecessary "../HW/" in include paths
  • Loading branch information
magcius committed Dec 31, 2013
1 parent 70d4d97 commit b6ad8bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/HW/AudioInterface.cpp
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/HW/DVDInterface.cpp
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions Source/Core/Core/Src/HW/SystemTimers.cpp
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/HW/VideoInterface.cpp
Expand Up @@ -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"
Expand Down

0 comments on commit b6ad8bd

Please sign in to comment.