diff options
Diffstat (limited to 'engines/cge2')
-rw-r--r-- | engines/cge2/cge2.h | 3 | ||||
-rw-r--r-- | engines/cge2/snail.cpp | 7 |
2 files changed, 1 insertions, 9 deletions
diff --git a/engines/cge2/cge2.h b/engines/cge2/cge2.h index 930995a041..4febca32d1 100644 --- a/engines/cge2/cge2.h +++ b/engines/cge2/cge2.h @@ -118,7 +118,7 @@ enum { }; enum CallbackType { - kNullCB = 0, kQGame, kXScene, kSoundSetVolume + kNullCB = 0, kQGame, kXScene }; enum Action { kNear, kMTake, kFTake, kActions }; @@ -265,7 +265,6 @@ public: Sprite *expandSprite(Sprite *spr); void qGame(); void xScene(); - void sndSetVolume(); const ADGameDescription *_gameDescription; diff --git a/engines/cge2/snail.cpp b/engines/cge2/snail.cpp index 240b70a557..54ef036dc3 100644 --- a/engines/cge2/snail.cpp +++ b/engines/cge2/snail.cpp @@ -256,9 +256,6 @@ void CommandHandler::runCommand() { case kXScene: _vm->xScene(); break; - case kSoundSetVolume: - _vm->sndSetVolume(); - break; default: error("Unknown Callback Type in SNEXEC"); break; @@ -703,10 +700,6 @@ void CGE2Engine::xScene() { sceneUp(_req); } -void CGE2Engine::sndSetVolume() { - warning("STUB: CGE2Engine::sndSetVolume()"); -} - void CommandHandler::addCommand(CommandType com, int ref, int val, void *ptr) { if (ref == -2) ref = 142 - _vm->_sex; |