diff options
author | Nicolas Bacca | 2002-12-02 00:09:15 +0000 |
---|---|---|
committer | Nicolas Bacca | 2002-12-02 00:09:15 +0000 |
commit | 6365707048dcb7f99215482235d66dc1cfe01591 (patch) | |
tree | eacbc32a97a9242c1c90619acfd9745be7b31e4d /backends/wince | |
parent | 718b935d485f6ea87d90ad13d3e9b9329e1ffd78 (diff) | |
download | scummvm-rg350-6365707048dcb7f99215482235d66dc1cfe01591.tar.gz scummvm-rg350-6365707048dcb7f99215482235d66dc1cfe01591.tar.bz2 scummvm-rg350-6365707048dcb7f99215482235d66dc1cfe01591.zip |
Do not display the save/load icon for Simon since it's not mapped (use the postcard, Simon)
svn-id: r5807
Diffstat (limited to 'backends/wince')
-rw-r--r-- | backends/wince/screen.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/wince/screen.cpp b/backends/wince/screen.cpp index 67bd276035..a983ac7989 100644 --- a/backends/wince/screen.cpp +++ b/backends/wince/screen.cpp @@ -83,6 +83,7 @@ extern UBYTE item_bomb_colors[]; extern bool sound_activated; extern bool hide_toolbar; +extern bool is_simon; bool toolbar_drawn; bool draw_keyboard; bool wide_screen; @@ -772,7 +773,8 @@ void drawAllToolbar() { pBlt_part(image_expand(item_toolbar), 0, 200, 320, 40, item_toolbar_colors, 0); x = 10; y = 204; - pBlt_part(image_expand(item_disk), x, y, 32, 32, item_disk_colors, 0); + if (!is_simon) + pBlt_part(image_expand(item_disk), x, y, 32, 32, item_disk_colors, 0); x += 40; pBlt_part(image_expand(item_skip), x, y, 32, 32, item_skip_colors, 0); x += 40; |