mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
Add Booty Bay intro track to randomized login music
This commit is contained in:
parent
28e32392fc
commit
c221ce07c6
2 changed files with 3 additions and 2 deletions
BIN
assets/Gold on the Tide in Booty Bay.mp3
Executable file
BIN
assets/Gold on the Tide in Booty Bay.mp3
Executable file
Binary file not shown.
|
|
@ -100,9 +100,10 @@ void AuthScreen::render(auth::AuthHandler& authHandler) {
|
|||
music->update(ImGui::GetIO().DeltaTime);
|
||||
if (!music->isPlaying()) {
|
||||
static std::mt19937 rng(std::random_device{}());
|
||||
static const std::array<const char*, 2> kLoginTracks = {
|
||||
static const std::array<const char*, 3> kLoginTracks = {
|
||||
"Raise the Mug, Sound the Warcry.mp3",
|
||||
"Wanderwewill.mp3"
|
||||
"Wanderwewill.mp3",
|
||||
"Gold on the Tide in Booty Bay.mp3"
|
||||
};
|
||||
|
||||
std::vector<std::string> availableTracks;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue