diff options
Diffstat (limited to '')
-rw-r--r-- | engine/xe_engine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engine/xe_engine.cpp b/engine/xe_engine.cpp index af2c470..e137d11 100644 --- a/engine/xe_engine.cpp +++ b/engine/xe_engine.cpp @@ -2,6 +2,8 @@ #include "xe_image.hpp" #include <chrono> +#include <iostream> +#include <AL/alc.h> #include <AL/alut.h> namespace xe { @@ -12,6 +14,7 @@ XeEngine::XeEngine(int width, int height, std::string name) : xeWindow{width, he xeCamera{} { loadDescriptorPool(); alutInit(0, NULL); + std::cout << "Audio device: " << alcGetString(NULL, ALC_DEFAULT_DEVICE_SPECIFIER) << "\n"; }; XeEngine::~XeEngine() { |