]> git.localhorst.tv Git - blank.git/blobdiff - src/audio/Audio.hpp
glm backwards compatibility
[blank.git] / src / audio / Audio.hpp
index bfd6d47594f4e81b175aa7a860269d51fb0439bd..dfa848f5a4795354f83b91e427dfeec1cf59925e 100644 (file)
@@ -2,9 +2,9 @@
 #define BLANK_AUDIO_AUDIO_HPP_
 
 #include "../app/IntervalTimer.hpp"
+#include "../graphics/glm.hpp"
 
 #include <al.h>
-#include <glm/glm.hpp>
 
 
 namespace blank {
@@ -42,7 +42,7 @@ private:
 private:
        static constexpr std::size_t NUM_SRC = 16;
        ALuint source[NUM_SRC];
-       IntervalTimer timer[NUM_SRC];
+       CoarseTimer timer[NUM_SRC];
        int last_free;
 
 };