X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FSound.cc;h=ca3ecfec8117fb93386edf6128c507d5ae41bcc2;hp=f9bdfd7a99622c22bb231405a768e2343c1ab690;hb=987971a961454d97082c6448fdc0bbeb540281bb;hpb=be9ebc1104574e5e81e19c5caba0c23b54df826d diff --git a/src/Moof/Sound.cc b/src/Moof/Sound.cc index f9bdfd7..ca3ecfe 100644 --- a/src/Moof/Sound.cc +++ b/src/Moof/Sound.cc @@ -35,7 +35,8 @@ #include #include -#include "Engine.hh" +#include "Core.hh" +#include "Error.hh" #include "Library.hh" #include "Log.hh" #include "Sound.hh" @@ -65,7 +66,7 @@ public: { public: - Buffer(const std::string& name) : + explicit Buffer(const std::string& name) : Library(name), mBuffer(-1) { @@ -436,6 +437,8 @@ public: std::deque mQueue; Timer mStreamTimer; + + Backend mBackend; };