diff options
author | Bottinator22 <bottinator22@gmail.com> | 2024-01-02 23:08:51 -0800 |
---|---|---|
committer | Bottinator22 <bottinator22@gmail.com> | 2024-01-02 23:08:51 -0800 |
commit | 91cf2d82515583d7627ce3fd452f81e345918144 (patch) | |
tree | 6d9ea19b3e910ba7e5bb1f2c4bfc9dd2c4dcd516 /source/game/StarSongbook.cpp | |
parent | 9e605b182da26bd9fc2f28805d5f08c6764e47a3 (diff) |
Add fork changes (move instruments to their own audio group)
Diffstat (limited to 'source/game/StarSongbook.cpp')
-rw-r--r-- | source/game/StarSongbook.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarSongbook.cpp b/source/game/StarSongbook.cpp index 98c9ec7..cba60f3 100644 --- a/source/game/StarSongbook.cpp +++ b/source/game/StarSongbook.cpp @@ -153,7 +153,7 @@ void Songbook::playback() { void Songbook::render(RenderCallback* renderCallback) { for (auto& a : m_pendingAudio) - renderCallback->addAudio(a); + renderCallback->addInstrumentAudio(a); m_pendingAudio.clear(); } |