aboutsummaryrefslogtreecommitdiff
path: root/simon/vga.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-05-24 12:26:28 +0000
committerTravis Howell2003-05-24 12:26:28 +0000
commit13739f18ef6c637799fc5f466f7d3f132268c0df (patch)
tree57447eee22d95b349bdc6772318f240a3f8cff5a /simon/vga.cpp
parente95d717fb16ad880d631b796e12c658377b54323 (diff)
downloadscummvm-rg350-13739f18ef6c637799fc5f466f7d3f132268c0df.tar.gz
scummvm-rg350-13739f18ef6c637799fc5f466f7d3f132268c0df.tar.bz2
scummvm-rg350-13739f18ef6c637799fc5f466f7d3f132268c0df.zip
More renames
svn-id: r7884
Diffstat (limited to 'simon/vga.cpp')
-rw-r--r--simon/vga.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index 1bb43e62f9..7108c2a82b 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -1577,7 +1577,7 @@ void SimonState::vc_59() {
uint end = vc_read_next_word() + 1;
do {
- vc_kill_thread(file, start);
+ vc_kill_sprite(file, start);
} while (++start != end);
} else {
if (_sound->_voice_handle == 0)
@@ -1609,7 +1609,7 @@ void SimonState::vc_57_no_op() {
/* no op */
}
-void SimonState::vc_kill_thread(uint file, uint sprite) {
+void SimonState::vc_kill_sprite(uint file, uint sprite) {
uint16 old_sprite_id, old_cur_file_id;
VgaSleepStruct *vfs;
VgaSprite *vsp;
@@ -1667,7 +1667,7 @@ void SimonState::vc_60_kill_sprite() {
file = _vga_cur_file_id;
}
uint sprite = vc_read_next_word();
- vc_kill_thread(file, sprite);
+ vc_kill_sprite(file, sprite);
}
void SimonState::vc_61_sprite_change() {