Skip to content

Commit

Permalink
just return "menuLoop.mp3" smh
Browse files Browse the repository at this point in the history
  • Loading branch information
pundang committed Jul 9, 2024
1 parent 3825daa commit ed352b3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/SongManager.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#include "SongManager.hpp"
#include "Utils.hpp"
#include <Geode/binding/GameManager.hpp>

SongManager::SongManager() {}

Expand All @@ -18,7 +17,7 @@ void SongManager::pickRandomSong() {
if (m_songs.size() >= 1) {
m_currentSong = m_songs[Utils::randomIndex(m_songs.size())];
} else {
m_currentSong = GameManager::get()->getMenuMusicFile();
m_currentSong = "menuLoop.mp3";
}
}

Expand Down

0 comments on commit ed352b3

Please sign in to comment.