1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-28 16:32:18 +00:00

fix music_file not finding

This commit is contained in:
Zeno Rogue 2025-08-17 20:58:44 +02:00
parent 0e08b3225d
commit 02b03d8ece
2 changed files with 2 additions and 2 deletions

View File

@ -244,7 +244,7 @@ EX void buildCredits() {
"Triple_Agent_AAA, bluetailedgnat, Allalinor, Shitford, KittyTac, Christopher King, KosGD, TravelDemon, Bubbles, rdococ, frozenlake, MagmaMcFry, "
"Snakebird Priestess, roaringdragon2, Stopping Dog, bengineer8, Sir Light IJIJ, ShadeBlade, Saplou, shnourok, Ralith, madasa, 6% remaining, Chimera245, Remik Pi, alien foxcat thing, "
"Piotr Grochowski, Ann, still-flow, tyzone, Paradoxica, LottieRatWorld, aismallard, albatross, EncodedSpirit, Jacob Mandelson, CrashTuvai, cvoight, jennlbw, Kali Ranya, spiritbackup, Dylan, L_Lord, AntiRogue, "
"masonlgreen, A human, Pasu4, inbetween selves, CodeParade, Existentialistic, blejanre, Esme"
"masonlgreen, A human, Pasu4, inbetween selves, CodeParade, Existentialistic, blejanre, Esme, Joshua Murphy"
);
#ifdef EXTRALICENSE
help += EXTRALICENSE;

View File

@ -201,7 +201,7 @@ EX bool loadMusicInfo(string dir) {
EX bool loadMusicInfo() {
return
loadMusicInfo(find_file(musicfile))
(musicfile[0] && loadMusicInfo(find_file(musicfile)))
|| loadMusicInfo(find_file("hyperrogue-music.txt") )
|| loadMusicInfo(find_file("music/hyperrogue-music.txt") )
#ifdef FHS