summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/puzzles/rockbox.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/plugins/puzzles/rockbox.c b/apps/plugins/puzzles/rockbox.c
index cf0c6cc21b..74d037f6c5 100644
--- a/apps/plugins/puzzles/rockbox.c
+++ b/apps/plugins/puzzles/rockbox.c
@@ -1307,7 +1307,8 @@ static void rb_start_draw(void *handle)
1307static void rb_end_draw(void *handle) 1307static void rb_end_draw(void *handle)
1308{ 1308{
1309 (void) handle; 1309 (void) handle;
1310 /* we ignore the backend's redraw requests and just unconditionally update everything */ 1310 /* we ignore the backend's redraw requests and just
1311 * unconditionally update everything */
1311#if 0 1312#if 0
1312 if(!zoom_enabled) 1313 if(!zoom_enabled)
1313 { 1314 {
@@ -1543,7 +1544,12 @@ static int choose_key(void)
1543 if(timer_on) 1544 if(timer_on)
1544 timer_cb(); 1545 timer_cb();
1545 midend_process_key(me, 0, 0, game_keys[sel].button); 1546 midend_process_key(me, 0, 0, game_keys[sel].button);
1546 midend_redraw(me); 1547 midend_force_redraw(me);
1548
1549 if(zoom_enabled)
1550 rb->lcd_bitmap_part(zoom_fb, zoom_x, zoom_y, STRIDE(SCREEN_MAIN, zoom_w, zoom_h),
1551 0, 0, LCD_WIDTH, LCD_HEIGHT);
1552
1547 rb->lcd_update(); 1553 rb->lcd_update();
1548 rb->yield(); 1554 rb->yield();
1549 1555