aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound.h
diff options
context:
space:
mode:
authorFlorian Kagerer2009-11-14 22:51:35 +0000
committerFlorian Kagerer2009-11-14 22:51:35 +0000
commit9bd5e07d90ad5693d96a557d66c919cf3097d34b (patch)
treec8a2fe80e07126cb6e235951d29d32ea88daea68 /engines/kyra/sound.h
parentb9b5511b3c5e916366c20e251461f217b679054e (diff)
downloadscummvm-rg350-9bd5e07d90ad5693d96a557d66c919cf3097d34b.tar.gz
scummvm-rg350-9bd5e07d90ad5693d96a557d66c919cf3097d34b.tar.bz2
scummvm-rg350-9bd5e07d90ad5693d96a557d66c919cf3097d34b.zip
KYRA: added kyra 1 pc98 static data to kyra.dat (intro forest sequence is still broken)
svn-id: r45906
Diffstat (limited to 'engines/kyra/sound.h')
-rw-r--r--engines/kyra/sound.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/engines/kyra/sound.h b/engines/kyra/sound.h
index 3d74972162..f04e96d6c9 100644
--- a/engines/kyra/sound.h
+++ b/engines/kyra/sound.h
@@ -108,12 +108,6 @@ public:
virtual void loadSoundFile(Common::String file) = 0;
/**
- * Load hard coded data for playing music
- * (and somtimes sound effects) from.
- */
- virtual void loadSoundFile(const uint8 *data, int len) {}
-
- /**
* Load a sound file for playing sound
* effects from.
*/
@@ -275,7 +269,6 @@ public:
void loadSoundFile(uint file) { _music->loadSoundFile(file); _sfx->loadSoundFile(file); }
void loadSoundFile(Common::String file) { _music->loadSoundFile(file); _sfx->loadSoundFile(file); }
- void loadSoundFile(const uint8 *data, int len) { _sfx->loadSoundFile(data, len); }
void loadSfxFile(Common::String file) { _sfx->loadSoundFile(file); }
void playTrack(uint8 track) { _music->playTrack(track); }