diff options
author | Max Horn | 2002-08-23 22:17:24 +0000 |
---|---|---|
committer | Max Horn | 2002-08-23 22:17:24 +0000 |
commit | 2bc00e107911bb77b232fb397940455dbab80216 (patch) | |
tree | f23049efe114a728c83bf527cf1c6b8f7bfadc40 /simon | |
parent | 08b161f1137b9b7590c2acbbed13c2154fc89afc (diff) | |
download | scummvm-rg350-2bc00e107911bb77b232fb397940455dbab80216.tar.gz scummvm-rg350-2bc00e107911bb77b232fb397940455dbab80216.tar.bz2 scummvm-rg350-2bc00e107911bb77b232fb397940455dbab80216.zip |
patch #598375: SIMON: ugly hack to get beard working
svn-id: r4807
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index d3b8a8391f..358cc42e98 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4039,6 +4039,10 @@ void SimonState::read_vga_from_datfile_1(uint vga_id) char buf[50]; uint32 size; + // FIXME - weird hack to make the beard show up when wearing it (see bug #590800) + if (vga_id == 328) + sprintf(buf, "0119.VGA"); + else sprintf(buf, "%.3d%d.VGA", vga_id >> 1, (vga_id & 1) + 1); in = fopen_maybe_lowercase(buf); |