diff options
| author | Oliver Kiehl | 2003-02-15 14:51:24 +0000 | 
|---|---|---|
| committer | Oliver Kiehl | 2003-02-15 14:51:24 +0000 | 
| commit | 1745e8b600581e542e4379cac9913b446865117f (patch) | |
| tree | dac8fdf603b4ea66491b1d26182d61e3fd459e45 | |
| parent | abe76691bc20024611e7044fcbd42426e1477542 (diff) | |
| download | scummvm-rg350-1745e8b600581e542e4379cac9913b446865117f.tar.gz scummvm-rg350-1745e8b600581e542e4379cac9913b446865117f.tar.bz2 scummvm-rg350-1745e8b600581e542e4379cac9913b446865117f.zip  | |
possible fix for Bug #687059 ?
svn-id: r6609
| -rw-r--r-- | simon/items.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/items.cpp b/simon/items.cpp index 11d1ec054c..825f51759a 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -990,7 +990,7 @@ int SimonState::runScript()  				const char *s = (const char *)getStringPtrByID(_stringid_array_3[a]);  				ThreeValues *tv = getThreeValues(b); -				if (_game == GAME_TALKIE)  +				if (_game & GAME_TALKIE)   					d = _array_4[a];  				if (d != 0 && !_vk_t_toggle) {  | 
