From ab8d182c376b8c8b4b5edd6e724c9153c080437a Mon Sep 17 00:00:00 2001 From: Sonicadvance1 Date: Mon, 12 Oct 2009 00:01:29 +0000 Subject: [PATCH] Fix Linux compiling/Running git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4406 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/AudioInterface.cpp | 2 +- Source/Core/Core/Src/HW/DVDInterface.cpp | 2 +- Source/Core/Core/Src/HW/StreamADPCM.cpp | 2 +- Source/Plugins/Plugin_VideoOGL/Src/main.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/Src/HW/AudioInterface.cpp b/Source/Core/Core/Src/HW/AudioInterface.cpp index 6d95dbf222..699257e4ec 100644 --- a/Source/Core/Core/Src/HW/AudioInterface.cpp +++ b/Source/Core/Core/Src/HW/AudioInterface.cpp @@ -24,7 +24,7 @@ #include "Common.h" -#include "StreamADPCM.H" +#include "StreamADPCM.h" #include "AudioInterface.h" #include "CPU.h" diff --git a/Source/Core/Core/Src/HW/DVDInterface.cpp b/Source/Core/Core/Src/HW/DVDInterface.cpp index a8b2b085cc..435520ee2c 100644 --- a/Source/Core/Core/Src/HW/DVDInterface.cpp +++ b/Source/Core/Core/Src/HW/DVDInterface.cpp @@ -20,7 +20,7 @@ #include "../ConfigManager.h" #include "../CoreTiming.h" -#include "StreamADPCM.H" // Core +#include "StreamADPCM.h" // Core #include "DVDInterface.h" #include "../PowerPC/PowerPC.h" #include "ProcessorInterface.h" diff --git a/Source/Core/Core/Src/HW/StreamADPCM.cpp b/Source/Core/Core/Src/HW/StreamADPCM.cpp index 80fbb69d6a..7b07fdec3c 100644 --- a/Source/Core/Core/Src/HW/StreamADPCM.cpp +++ b/Source/Core/Core/Src/HW/StreamADPCM.cpp @@ -1,6 +1,6 @@ // Adapted from in_cube by hcs & destop -#include "StreamADPCM.H" +#include "StreamADPCM.h" #define ONE_BLOCK_SIZE 32 #define SAMPLES_PER_BLOCK 28 diff --git a/Source/Plugins/Plugin_VideoOGL/Src/main.cpp b/Source/Plugins/Plugin_VideoOGL/Src/main.cpp index 1597179b30..f4f251ae85 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/main.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/main.cpp @@ -604,7 +604,7 @@ void Video_PixelEngineWrite32(const u32 _Data, const u32 _Address) PixelEngine::Write32(_Data, _Address); } -inline void Video_GatherPipeBursted(void) +void Video_GatherPipeBursted(void) { CommandProcessor::GatherPipeBursted(); }