From 6365707048dcb7f99215482235d66dc1cfe01591 Mon Sep 17 00:00:00 2001 From: Nicolas Bacca Date: Mon, 2 Dec 2002 00:09:15 +0000 Subject: Do not display the save/load icon for Simon since it's not mapped (use the postcard, Simon) svn-id: r5807 --- backends/wince/screen.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'backends') 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; -- cgit v1.2.3