aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2003-12-30 00:37:00 +0000
committerTravis Howell2003-12-30 00:37:00 +0000
commitb51d271cc63a9c67703b6f2404a6b20ee88b82ea (patch)
tree9dc264053e03101a06fc8053f412992352948fb8
parent0ea94e63a7368be39b3be21a36ccc24dad1c992c (diff)
downloadscummvm-rg350-b51d271cc63a9c67703b6f2404a6b20ee88b82ea.tar.gz
scummvm-rg350-b51d271cc63a9c67703b6f2404a6b20ee88b82ea.tar.bz2
scummvm-rg350-b51d271cc63a9c67703b6f2404a6b20ee88b82ea.zip
Fix regression
svn-id: r12025
-rw-r--r--simon/simon.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index a53224d95a..97d616e95b 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -3372,7 +3372,8 @@ void SimonEngine::fcs_unk1(uint fcs_index) {
// ok
void SimonEngine::fcs_unk_5(FillOrCopyStruct *fcs, uint fcs_index) {
- o_kill_sprite_simon1(0x80);
+ if (_game & GF_WIN)
+ o_kill_sprite_simon1(0x80);
}
void SimonEngine::delete_hitarea_by_index(uint index) {