From 2f61d7d77b1b1784fc4d10ff148fd2fed68ac0b3 Mon Sep 17 00:00:00 2001 From: Scott Thomas Date: Tue, 10 Mar 2009 21:54:45 +0000 Subject: - Convert some file references from uint16 to uint32 to suit 11H - Add some 11H opcodes svn-id: r39313 --- engines/groovie/music.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/groovie/music.h') 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 >lName); ~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(); }; -- cgit v1.2.3