diff options
author | Travis Howell | 2003-12-16 05:08:26 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-16 05:08:26 +0000 |
commit | af6c68faf73bb0006ac1525cdaddfb500135dfd0 (patch) | |
tree | 74c33049c0adea14ea3ba9969ef8fa8eacac0cd8 /simon | |
parent | 0b61a4c3a86e0583a74f6a53835e90c484a196e0 (diff) | |
download | scummvm-rg350-af6c68faf73bb0006ac1525cdaddfb500135dfd0.tar.gz scummvm-rg350-af6c68faf73bb0006ac1525cdaddfb500135dfd0.tar.bz2 scummvm-rg350-af6c68faf73bb0006ac1525cdaddfb500135dfd0.zip |
Remove old hack
svn-id: r11671
Diffstat (limited to 'simon')
-rw-r--r-- | simon/charset.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/simon/charset.cpp b/simon/charset.cpp index 575039ddf3..c2d290c219 100644 --- a/simon/charset.cpp +++ b/simon/charset.cpp @@ -194,15 +194,6 @@ void SimonEngine::render_string(uint vga_sprite_id, uint color, uint width, uint dst -= img_width - 1; // For Hebrew, move from right edge to left edge of image. byte *cur_dst = dst; - if (_game == GAME_SIMON1AMIGA) { - // FIXME Really bad hack to allow simon1amiga to work for now - // simon1amiga needs to be decoded a different way - if (img_width < 1 || img_width > 49) - img_width = 7; - if (img_height < 1 || img_height > 49) - img_height = 9; - } - assert(img_width > 0 && img_width < 50 && img_height > 0 && img_height < 50); do { |