From 2afe2152712981e21d6bda6f029292ed2b1cf91e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 17 Feb 2014 05:18:15 -0500 Subject: Convert all includes to relative paths. --- Source/Core/AudioCommon/NullSoundStream.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/AudioCommon/NullSoundStream.cpp') diff --git a/Source/Core/AudioCommon/NullSoundStream.cpp b/Source/Core/AudioCommon/NullSoundStream.cpp index 99bf8aae4b..fe41f49508 100644 --- a/Source/Core/AudioCommon/NullSoundStream.cpp +++ b/Source/Core/AudioCommon/NullSoundStream.cpp @@ -2,9 +2,9 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include "NullSoundStream.h" -#include "../Core/HW/SystemTimers.h" -#include "../Core/HW/AudioInterface.h" +#include "AudioCommon/NullSoundStream.h" +#include "Core/HW/SystemTimers.h" +#include "Core/HW/AudioInterface.h" void NullSound::SoundLoop() { -- cgit v1.2.3 From fca12c4c4e6a2cd381a34e5e1bc80ffb22bd35c3 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Wed, 19 Feb 2014 02:11:52 +0100 Subject: Fix more header sorting issues in AudioCommon/ (now check-includes clean). --- Source/Core/AudioCommon/NullSoundStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/AudioCommon/NullSoundStream.cpp') diff --git a/Source/Core/AudioCommon/NullSoundStream.cpp b/Source/Core/AudioCommon/NullSoundStream.cpp index fe41f49508..fcd577f97a 100644 --- a/Source/Core/AudioCommon/NullSoundStream.cpp +++ b/Source/Core/AudioCommon/NullSoundStream.cpp @@ -3,8 +3,8 @@ // Refer to the license.txt file included. #include "AudioCommon/NullSoundStream.h" -#include "Core/HW/SystemTimers.h" #include "Core/HW/AudioInterface.h" +#include "Core/HW/SystemTimers.h" void NullSound::SoundLoop() { -- cgit v1.2.3