From 5233fbc7bda3097a687af0a5a23f30b8894023be Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Tue, 17 Dec 2002 14:05:44 +0000 Subject: Fix error in my last commit Remove hack svn-id: r6009 --- simon/items.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'simon') diff --git a/simon/items.cpp b/simon/items.cpp index 8f7205c1cd..3143d0d2e2 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -1488,8 +1488,7 @@ void SimonState::o_unk_127() uint a = getVarOrWord(); /*uint b = */ getVarOrWord(); - //FIXME simon 1 attempts repeat music track 35 in ending sequences when it should only be played once - if ((a != _last_music_played) && (a < 35)) { + if (a != _last_music_played) { _last_music_played = a; playMusic(a); } -- cgit v1.2.3