1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-02 21:45:34 +00:00

WIP Windows build

This commit is contained in:
athile 2010-08-30 10:34:32 +01:00
parent 4a31f4e0f8
commit 2407f21c47
2 changed files with 4 additions and 4 deletions

View file

@ -4,8 +4,8 @@
#include "../../stream/filters/buffer_stream.hpp" #include "../../stream/filters/buffer_stream.hpp"
#include "../../tools/str_exception.hpp" #include "../../tools/str_exception.hpp"
#include <AL/al.h> #include "al.h"
#include <AL/alc.h> #include "alc.h"
using namespace Mangle::Sound; using namespace Mangle::Sound;

View file

@ -30,8 +30,8 @@ class OpenAL_Factory : public SoundFactory
OpenAL_Factory(bool doSetup = true); OpenAL_Factory(bool doSetup = true);
~OpenAL_Factory(); ~OpenAL_Factory();
SoundPtr load(const std::string &file) { assert(0); } SoundPtr load(const std::string &file) { assert(0); return SoundPtr(); }
SoundPtr load(Stream::StreamPtr input) { assert(0); } SoundPtr load(Stream::StreamPtr input) { assert(0); return SoundPtr(); }
SoundPtr loadRaw(SampleSourcePtr input); SoundPtr loadRaw(SampleSourcePtr input);
void update(); void update();