diff options
-rw-r--r-- | simon/simon.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index a28fe812f9..490369410e 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4248,11 +4248,10 @@ void SimonState::read_vga_from_datfile_1(uint vga_id) File in; char buf[50]; uint32 size; - // FIXME - weird hack to make the beard show up when wearing it (see bug #590800) + if (vga_id == 23) + sprintf(buf, "0112.VGA"); if (vga_id == 328) sprintf(buf, "0119.VGA"); - else - sprintf(buf, "%.3d%d.VGA", vga_id >> 1, (vga_id & 1) + 1); in.open(buf, _gameDataPath); if (in.isOpen() == false) |