mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 09:31:14 +00:00
- fixed SPC music looping after update to GME 0.6.2
Why was the default player setup changed at all? https://forum.zdoom.org/viewtopic.php?t=65863
This commit is contained in:
parent
6b1467dd8d
commit
7132b1a67c
1 changed files with 5 additions and 0 deletions
|
@ -156,6 +156,11 @@ MusInfo *GME_OpenSong(FileReader &reader, const char *fmt)
|
|||
}
|
||||
gme_set_stereo_depth(emu, clamp(*gme_stereodepth, 0.f, 1.f));
|
||||
gme_set_fade(emu, -1); // Enable infinite loop
|
||||
|
||||
#if GME_VERSION >= 0x602
|
||||
gme_set_autoload_playback_limit(emu, 0);
|
||||
#endif // GME_VERSION >= 0x602
|
||||
|
||||
return new GMESong(emu, sample_rate);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue