Use correct music offsets for HE games, only a few demos use wrong tunes now.

Get all music details for HE games from one function only.

svn-id: r17662
This commit is contained in:
Travis Howell 2005-04-18 07:18:33 +00:00
parent 58966d6b90
commit d4ba67a497
7 changed files with 67 additions and 96 deletions

View file

@ -2211,7 +2211,9 @@ void ScummEngine_v100he::o100_getResourceSize() {
break;
case 72:
if (resid > _numSounds) {
push(getMusicResourceSize(resid));
int offs;
_sound->getHEMusicDetails(resid, offs, size);
push(size);
return;
}
type = rtSound;