minor refactor

This commit is contained in:
MihailRis
2024-02-28 16:42:59 +03:00
parent f3d4ac8a58
commit ebbee4f0f2
5 changed files with 4 additions and 4 deletions
@@ -14,8 +14,8 @@
#include <AL/alc.h> #include <AL/alc.h>
#endif #endif
#include "audio.h" #include "../audio.h"
#include "../typedefs.h" #include "../../typedefs.h"
namespace audio { namespace audio {
struct ALBuffer; struct ALBuffer;
+1 -1
View File
@@ -12,7 +12,7 @@
#endif #endif
#include <glm/glm.hpp> #include <glm/glm.hpp>
#include "../typedefs.h" #include "../../typedefs.h"
#define AL_CHECK(STATEMENT) STATEMENT; AL::check_errors(__FILE__, __LINE__) #define AL_CHECK(STATEMENT) STATEMENT; AL::check_errors(__FILE__, __LINE__)
#define AL_GET_ERROR() AL::check_errors(__FILE__, __LINE__) #define AL_GET_ERROR() AL::check_errors(__FILE__, __LINE__)
+1 -1
View File
@@ -3,8 +3,8 @@
#include <iostream> #include <iostream>
#include <stdexcept> #include <stdexcept>
#include "ALAudio.h"
#include "NoAudio.h" #include "NoAudio.h"
#include "AL/ALAudio.h"
#include "../coders/wav.h" #include "../coders/wav.h"
#include "../coders/ogg.h" #include "../coders/ogg.h"