Skip to content

Commit b12293d

Browse files
committed
修复菜单底部cell不正常刷新问题
1 parent e781b27 commit b12293d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1424,7 +1424,7 @@ void
14241424
request_to_draw_cells_behind_menu(void)
14251425
{
14261426
int n, m;
1427-
for (m = LCD_HEIGHT/32-3; m <= LCD_HEIGHT/32-1; m++)
1427+
for (m = LCD_WIDTH/32-3; m <= LCD_WIDTH/32-1; m++)
14281428
for (n = 0; n < 8; n++)
14291429
mark_map(m, n);
14301430
redraw_request |= REDRAW_CELLS;

0 commit comments

Comments
 (0)