aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AudioSource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/AudioSource.cpp')
-rw-r--r--src/crepe/api/AudioSource.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/crepe/api/AudioSource.cpp b/src/crepe/api/AudioSource.cpp
index cbde79f..4d1b093 100644
--- a/src/crepe/api/AudioSource.cpp
+++ b/src/crepe/api/AudioSource.cpp
@@ -9,9 +9,7 @@ AudioSource::AudioSource(std::unique_ptr<Resource> audio_clip) {
this->_sound = std::make_unique<crepe::Sound>(std::move(audio_clip));
}
-void AudioSource::play() {
- return this->play(false);
-}
+void AudioSource::play() { return this->play(false); }
void AudioSource::play(bool looping) {
this->_sound->set_looping(looping);
@@ -22,4 +20,3 @@ void AudioSource::stop() {
this->_sound->pause();
this->_sound->rewind();
}
-