aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorMax Horn2002-08-23 22:17:24 +0000
committerMax Horn2002-08-23 22:17:24 +0000
commit2bc00e107911bb77b232fb397940455dbab80216 (patch)
treef23049efe114a728c83bf527cf1c6b8f7bfadc40 /simon
parent08b161f1137b9b7590c2acbbed13c2154fc89afc (diff)
downloadscummvm-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.cpp4
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);