aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2003-01-05 10:40:44 +0000
committerTravis Howell2003-01-05 10:40:44 +0000
commit6414e9a2558f1707ff63d6f59651e14bee38728d (patch)
tree88ff6ee4bd365e0b9368ef9d83dd355c0f84a6c0 /simon
parentc502a72f6ed01447d74bbb669c73f9105bec3b82 (diff)
downloadscummvm-rg350-6414e9a2558f1707ff63d6f59651e14bee38728d.tar.gz
scummvm-rg350-6414e9a2558f1707ff63d6f59651e14bee38728d.tar.bz2
scummvm-rg350-6414e9a2558f1707ff63d6f59651e14bee38728d.zip
Remove fixme
svn-id: r6335
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp5
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)