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

View File

@ -14,8 +14,8 @@
#include <AL/alc.h>
#endif
#include "audio.h"
#include "../typedefs.h"
#include "../audio.h"
#include "../../typedefs.h"
namespace audio {
struct ALBuffer;

View File

@ -12,7 +12,7 @@
#endif
#include <glm/glm.hpp>
#include "../typedefs.h"
#include "../../typedefs.h"
#define AL_CHECK(STATEMENT) STATEMENT; AL::check_errors(__FILE__, __LINE__)
#define AL_GET_ERROR() AL::check_errors(__FILE__, __LINE__)

View File

@ -3,8 +3,8 @@
#include <iostream>
#include <stdexcept>
#include "ALAudio.h"
#include "NoAudio.h"
#include "AL/ALAudio.h"
#include "../coders/wav.h"
#include "../coders/ogg.h"