From b54bc7353242c9199c5982cc9881159d5f73d159 Mon Sep 17 00:00:00 2001 From: dhewg Date: Sun, 11 Dec 2011 15:28:07 +0100 Subject: [PATCH] Move Windows only OpenAL files to sys/win32/ --- neo/sound/snd_local.h | 2 +- neo/{openal => sys/win32}/idal.cpp | 0 neo/{openal => sys/win32}/idal.h | 0 neo/{openal => sys/win32}/idal.py | 0 neo/sys/win32/win_snd.cpp | 2 +- 5 files changed, 2 insertions(+), 2 deletions(-) rename neo/{openal => sys/win32}/idal.cpp (100%) rename neo/{openal => sys/win32}/idal.h (100%) rename neo/{openal => sys/win32}/idal.py (100%) diff --git a/neo/sound/snd_local.h b/neo/sound/snd_local.h index 409e244a..4edd0153 100644 --- a/neo/sound/snd_local.h +++ b/neo/sound/snd_local.h @@ -33,7 +33,7 @@ If you have questions concerning this license or the applicable additional terms #ifdef _WIN32 #include "../openal/include/al.h" #include "../openal/include/alc.h" -#include "../openal/idal.h" +#include "../sys/win32/idal.h" // broken OpenAL SDK ? #define ID_ALCHAR (ALubyte *) #elif defined( MACOS_X ) diff --git a/neo/openal/idal.cpp b/neo/sys/win32/idal.cpp similarity index 100% rename from neo/openal/idal.cpp rename to neo/sys/win32/idal.cpp diff --git a/neo/openal/idal.h b/neo/sys/win32/idal.h similarity index 100% rename from neo/openal/idal.h rename to neo/sys/win32/idal.h diff --git a/neo/openal/idal.py b/neo/sys/win32/idal.py similarity index 100% rename from neo/openal/idal.py rename to neo/sys/win32/idal.py diff --git a/neo/sys/win32/win_snd.cpp b/neo/sys/win32/win_snd.cpp index c3c5e373..ae48ab11 100644 --- a/neo/sys/win32/win_snd.cpp +++ b/neo/sys/win32/win_snd.cpp @@ -36,7 +36,7 @@ If you have questions concerning this license or the applicable additional terms #include "../../sound/snd_local.h" #include "win_local.h" -#include "../../openal/idal.cpp" +#include "idal.cpp" #define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } } #define SAFE_DELETE_ARRAY(p) { if(p) { delete[] (p); (p)=NULL; } }