diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:21:37 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-01 17:21:37 +0200 |
commit | 311e98572c26750e4a4695079fa80ca5648d109e (patch) | |
tree | f28e18a0df9f39932b0e2e4ec292bf01cc7a661f /src/crepe/SoundSystem.cpp | |
parent | de288a859a631acf6aac10fad825cafaa3744dc9 (diff) |
implement remaining Sound functions
Diffstat (limited to 'src/crepe/SoundSystem.cpp')
-rw-r--r-- | src/crepe/SoundSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/SoundSystem.cpp b/src/crepe/SoundSystem.cpp index 00f874c..b57e51a 100644 --- a/src/crepe/SoundSystem.cpp +++ b/src/crepe/SoundSystem.cpp @@ -4,7 +4,7 @@ using namespace crepe; -SoundSystem & SoundSystem::instance() { +SoundSystem & SoundSystem::get_instance() { static SoundSystem instance; return instance; } |