aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/music.h
diff options
context:
space:
mode:
authorScott Thomas2009-03-10 21:54:45 +0000
committerScott Thomas2009-03-10 21:54:45 +0000
commit2f61d7d77b1b1784fc4d10ff148fd2fed68ac0b3 (patch)
tree45406ac2df22bc792ede461dca612d718c7094e3 /engines/groovie/music.h
parente6d0a83bb1544b582ee17bb59fa402bee80c66dd (diff)
downloadscummvm-rg350-2f61d7d77b1b1784fc4d10ff148fd2fed68ac0b3.tar.gz
scummvm-rg350-2f61d7d77b1b1784fc4d10ff148fd2fed68ac0b3.tar.bz2
scummvm-rg350-2f61d7d77b1b1784fc4d10ff148fd2fed68ac0b3.zip
- Convert some file references from uint16 to uint32 to suit 11H
- Add some 11H opcodes svn-id: r39313
Diffstat (limited to 'engines/groovie/music.h')
-rw-r--r--engines/groovie/music.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/groovie/music.h b/engines/groovie/music.h
index 3315ce1886..92c7afde70 100644
--- a/engines/groovie/music.h
+++ b/engines/groovie/music.h
@@ -38,8 +38,8 @@ class MusicPlayer : public MidiDriver {
public:
MusicPlayer(GroovieEngine *vm, const Common::String &gtlName);
~MusicPlayer();
- void playSong(uint16 fileref);
- void setBackgroundSong(uint16 fileref);
+ void playSong(uint32 fileref);
+ void setBackgroundSong(uint32 fileref);
void playCD(uint8 track);
void startBackground();
@@ -102,13 +102,13 @@ private:
uint8 _musicType;
bool _isPlaying;
- uint16 _backgroundFileRef;
+ uint32 _backgroundFileRef;
uint8 _prevCDtrack;
static void onTimer(void *data);
- bool play(uint16 fileref, bool loop);
- bool load(uint16 fileref);
+ bool play(uint32 fileref, bool loop);
+ bool load(uint32 fileref);
void unload();
};