#7908 closed patch (wontfix)
adl sound dump files patch
Reported by: | SF/japj | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | Audio |
Version: | Keywords: | ||
Cc: | Game: |
Description
The following patch allows the adl (midi) files being saved whenever it should be played. for sound debugging purposes only.
RCS file: /cvsroot/scummvm/scummvm/sound.cpp,v diff -u -r1.5 sound.cpp
void Scumm::playSound(int sound) { SoundEngine *se = (SoundEngine*)_soundDriver; if (se) { - getResourceAddress(rtSound, sound); + byte *mem=getResourceAddress(rtSound, sound); + dumpResource("sound_adl",sound,mem);
se->start_sound(sound); } }
Ticket imported from: #480381. Ticket imported from: patches/13.
Change History (3)
comment:1 by , 23 years ago
comment:2 by , 23 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
comment:3 by , 6 years ago
Component: | → Audio |
---|
Note:
See TracTickets
for help on using tickets.
don't apply to cvs, because it won't work in current cvs because of no SoundEngine is present atm