allow custom MIDI in add-on hogs to be used without caching everything

This commit is contained in:
kreatordxx 2008-01-25 11:08:50 +00:00
parent f971a49958
commit 9e47ebc29f
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,9 @@
D2X-Rebirth Changelog
20080125
--------
arch/sdl/digi_mixer_music.c: allow custom MIDI in add-on hogs to be used without caching everything
20080114
--------
INSTALL.txt, main/gamerend.c, main/network.c, main/udp.c: Updated Docs - Data files mus bt lowercase; Fixed small Multiplayer issues

View file

@ -33,7 +33,7 @@ void music_done() {
void convert_hmp(char *filename, char *mid_filename) {
if (!PHYSFS_exists(mid_filename))
if (1) //!PHYSFS_exists(mid_filename)) // allow custom MIDI in add-on hogs to be used without caching everything
{
const char *err;
PHYSFS_file *hmp_in;