diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-18 15:34:22 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-18 15:34:22 +0100 | 
| commit | b92da3c729c8fc7c002cb3acbb75c56cb63bd89e (patch) | |
| tree | 454b64d31b7e0c9151da88a0d49ee782565f49e9 /src/crepe/facade/Sound.cpp | |
| parent | 8b449e764b5c91cd3cb0c4fa404a290ab295a7ef (diff) | |
| parent | 121b64b1cb6cfead5814070c8b0185d3d7308095 (diff) | |
Merge branch 'master' of https://github.com/lonkaars/crepe into wouter/events
Diffstat (limited to 'src/crepe/facade/Sound.cpp')
| -rw-r--r-- | src/crepe/facade/Sound.cpp | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/src/crepe/facade/Sound.cpp b/src/crepe/facade/Sound.cpp index a1aef17..7aa89a9 100644 --- a/src/crepe/facade/Sound.cpp +++ b/src/crepe/facade/Sound.cpp @@ -1,21 +1,22 @@ -#include "../util/log.h" +#include "../util/Log.h"  #include "Sound.h"  #include "SoundContext.h"  using namespace crepe; +using namespace std; -Sound::Sound(std::unique_ptr<Asset> res) { +Sound::Sound(unique_ptr<Asset> res) {  	dbg_trace();  	this->load(std::move(res));  }  Sound::Sound(const char * src) {  	dbg_trace(); -	this->load(std::make_unique<Asset>(src)); +	this->load(make_unique<Asset>(src));  } -void Sound::load(std::unique_ptr<Asset> res) { this->sample.load(res->canonical()); } +void Sound::load(unique_ptr<Asset> res) { this->sample.load(res->get_canonical().c_str()); }  void Sound::play() {  	SoundContext & ctx = SoundContext::get_instance();  |