summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/chip8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c
index e990742c9f..a92fc4d13c 100644
--- a/apps/plugins/chip8.c
+++ b/apps/plugins/chip8.c
@@ -1060,7 +1060,7 @@ static void chip8_update_display(void)
1060 *row++ = w; 1060 *row++ = w;
1061 } 1061 }
1062 } 1062 }
1063#ifdef SIMULATOR 1063#if defined(SIMULATOR) || (LCD_DEPTH > 1)
1064 rb->lcd_set_drawmode(DRMODE_SOLID); 1064 rb->lcd_set_drawmode(DRMODE_SOLID);
1065 rb->lcd_mono_bitmap(lcd_framebuf[0], CHIP8_X, CHIP8_Y, CHIP8_LCDWIDTH, CHIP8_HEIGHT); 1065 rb->lcd_mono_bitmap(lcd_framebuf[0], CHIP8_X, CHIP8_Y, CHIP8_LCDWIDTH, CHIP8_HEIGHT);
1066 rb->lcd_update(); 1066 rb->lcd_update();