audio fixes
This commit is contained in:
@@ -188,7 +188,7 @@ uint ALAudio::getFreeSource(){
|
||||
}
|
||||
ALuint id;
|
||||
alGenSources(1, &id);
|
||||
if (!AL_GET_ERORR())
|
||||
if (!AL_GET_ERROR())
|
||||
return 0;
|
||||
allsources.push_back(id);
|
||||
return id;
|
||||
@@ -200,13 +200,9 @@ uint ALAudio::getFreeBuffer(){
|
||||
freebuffers.pop_back();
|
||||
return buffer;
|
||||
}
|
||||
if (allbuffers.size() == maxBuffers){
|
||||
std::cerr << "attempted to create new ALbuffer, but limit is " << maxBuffers << std::endl;
|
||||
return 0;
|
||||
}
|
||||
ALuint id;
|
||||
alGenBuffers(1, &id);
|
||||
if (!AL_GET_ERORR()) {
|
||||
if (!AL_GET_ERROR()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -227,7 +223,7 @@ std::vector<std::string> ALAudio::getAvailableDevices() const {
|
||||
|
||||
const ALCchar* devices;
|
||||
devices = alcGetString(device, ALC_DEVICE_SPECIFIER);
|
||||
if (!AL_GET_ERORR()) {
|
||||
if (!AL_GET_ERROR()) {
|
||||
return devicesVec;
|
||||
}
|
||||
|
||||
|
||||
@@ -88,7 +88,6 @@ namespace audio {
|
||||
std::vector<uint> freebuffers;
|
||||
|
||||
uint maxSources;
|
||||
uint maxBuffers;
|
||||
|
||||
ALAudio(ALCdevice* device, ALCcontext* context);
|
||||
public:
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@
|
||||
#include "../typedefs.h"
|
||||
|
||||
#define AL_CHECK(STATEMENT) STATEMENT; AL::check_errors(__FILE__, __LINE__)
|
||||
#define AL_GET_ERORR() AL::check_errors(__FILE__, __LINE__)
|
||||
#define AL_GET_ERROR() AL::check_errors(__FILE__, __LINE__)
|
||||
|
||||
namespace AL {
|
||||
bool check_errors(const std::string& filename, const std::uint_fast32_t line);
|
||||
|
||||
Reference in New Issue
Block a user