aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/vga_s1.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-10-27 12:55:48 +0000
committerTravis Howell2006-10-27 12:55:48 +0000
commitf1accee70239fe3ca0d83007099bf45f27e700c2 (patch)
treec33541830be26b4a92492dbddddd8d055a010c2a /engines/agos/vga_s1.cpp
parent231d6064de45ffc589e5b913194065488579fbcf (diff)
downloadscummvm-rg350-f1accee70239fe3ca0d83007099bf45f27e700c2.tar.gz
scummvm-rg350-f1accee70239fe3ca0d83007099bf45f27e700c2.tar.bz2
scummvm-rg350-f1accee70239fe3ca0d83007099bf45f27e700c2.zip
Cleanup
svn-id: r24531
Diffstat (limited to 'engines/agos/vga_s1.cpp')
-rw-r--r--engines/agos/vga_s1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/vga_s1.cpp b/engines/agos/vga_s1.cpp
index 5e19a4830e..fb3a80f1e9 100644
--- a/engines/agos/vga_s1.cpp
+++ b/engines/agos/vga_s1.cpp
@@ -38,7 +38,7 @@ void AGOSEngine::setupSimon1VideoOpcodes(VgaOpcodeProc *op) {
op[32] = &AGOSEngine::vc32_copyVar;
op[37] = &AGOSEngine::vc37_addToSpriteY;
op[48] = &AGOSEngine::vc48_setPathFinder;
- op[59] = &AGOSEngine::vc59_skipIfSpeechEnded;
+ op[59] = &AGOSEngine::vc59_ifSpeech;
op[60] = &AGOSEngine::vc60_stopAnimation;
op[61] = &AGOSEngine::vc61_setMaskImage;
op[62] = &AGOSEngine::vc62_fastFadeOut;
@@ -196,7 +196,7 @@ void AGOSEngine::vc48_setPathFinder() {
}
}
-void AGOSEngine::vc59_skipIfSpeechEnded() {
+void AGOSEngine::vc59_ifSpeech() {
if (!_sound->isVoiceActive())
vcSkipNextInstruction();
}