mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-24 19:52:37 +01:00
Merge pull request #97 from xsacha/master
Fix slashes in OpenAL includes
This commit is contained in:
commit
b46cb71324
@ -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);
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user