SCUMM/FM-TOWNS: cleanup

svn-id: r53053
This commit is contained in:
Florian Kagerer 2010-10-07 19:27:11 +00:00
parent 01c9b17068
commit cf9c948433
2 changed files with 3 additions and 3 deletions

View File

@ -630,7 +630,7 @@ void Player_Towns_v2::startSound(int sound) {
playPcmTrack(sound, ptr + 8, velo, pan, 0, pri);
} else if (READ_BE_UINT32(ptr) == MKID_BE('SBL ')) {
_soundOverride2[sound].type = 5;
playPcmTrackSBL(sound, ptr + 27);
playPcmTrackSBL(ptr + 27);
} else {
_soundOverride2[sound].type = 3;
_imuse->startSound(sound);
@ -714,7 +714,7 @@ void Player_Towns_v2::saveLoadWithSerializer(Serializer *ser) {
Player_Towns::saveLoadWithSerializer(ser);
}
void Player_Towns_v2::playPcmTrackSBL(int sound, const uint8 *data) {
void Player_Towns_v2::playPcmTrackSBL(const uint8 *data) {
static const uint8 header[] = {
0x54, 0x61, 0x6C, 0x6B, 0x69, 0x65, 0x20, 0x20,
0x78, 0x56, 0x34, 0x12, 0x00, 0x00, 0x00, 0x00,

View File

@ -170,7 +170,7 @@ public:
void saveLoadWithSerializer(Serializer *ser);
private:
void playPcmTrackSBL(int sound, const uint8 *data);
void playPcmTrackSBL(const uint8 *data);
uint8 *_sblData;
IMuse *_imuse;