Fix slashes in OpenAL includes

This commit is contained in:
Sacha
2014-03-10 00:44:12 +10:00
parent 8461bee32e
commit bde5c9cfed
2 changed files with 7 additions and 5 deletions
+4 -3
View File
@@ -1,7 +1,7 @@
#pragma once
#include "OpenAL\include\al.h"
#include "OpenAL\include\alc.h"
#include "OpenAL/include/al.h"
#include "OpenAL/include/alc.h"
#include <map>
extern ALenum g_last_al_error;
@@ -46,4 +46,5 @@ public:
void Stop();
bool AddBlock(ALuint bufferID, ALsizei size, const void* src);
void AddData(const void* src, ALsizei size);
};
};
+3 -2
View File
@@ -1,6 +1,6 @@
#pragma once
#include "sysutil_audio.h"
#include "AL\OpenALThread.h"
#include "AL/OpenALThread.h"
struct AudioInfo
{
@@ -43,4 +43,5 @@ public:
u8 GetState();
};
extern OpenALThread* m_audio_out;
extern OpenALThread* m_audio_out;