summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/common/lcd-common.c4
-rw-r--r--uisimulator/sdl/lcd-bitmap.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/uisimulator/common/lcd-common.c b/uisimulator/common/lcd-common.c
index bf9cb5c269..51c8215da1 100644
--- a/uisimulator/common/lcd-common.c
+++ b/uisimulator/common/lcd-common.c
@@ -24,8 +24,8 @@
24#include "lcd.h" 24#include "lcd.h"
25#include "lcd-sdl.h" 25#include "lcd-sdl.h"
26 26
27void lcd_blit(const fb_data* p_data, int x, int y, int width, int height, 27void lcd_blit_mono(const unsigned char *data, int x, int y, int width, int height,
28 int stride) 28 int stride)
29{ 29{
30 (void)p_data; 30 (void)p_data;
31 (void)x; 31 (void)x;
diff --git a/uisimulator/sdl/lcd-bitmap.c b/uisimulator/sdl/lcd-bitmap.c
index fa3e5d2b0d..bc9e56732f 100644
--- a/uisimulator/sdl/lcd-bitmap.c
+++ b/uisimulator/sdl/lcd-bitmap.c
@@ -193,9 +193,9 @@ void lcd_yuv_set_options(unsigned options)
193 (void)options; 193 (void)options;
194} 194}
195 195
196/* Draw a partial YUV colour bitmap - similiar behavior to lcd_yuv_blit 196/* Draw a partial YUV colour bitmap - similiar behavior to lcd_blit_yuv
197 in the core */ 197 in the core */
198void lcd_yuv_blit(unsigned char * const src[3], 198void lcd_blit_yuv(unsigned char * const src[3],
199 int src_x, int src_y, int stride, 199 int src_x, int src_y, int stride,
200 int x, int y, int width, int height) 200 int x, int y, int width, int height)
201{ 201{