From c1356436feebccf1c637a9a5a9202649023acc24 Mon Sep 17 00:00:00 2001 From: xcomputerman Date: Mon, 28 Mar 2005 05:52:01 +0000 Subject: [PATCH] Cure apparent symptoms of rasteritis. (compilation errors). SVN revision: 13952 --- legacy/evas/src/lib/engines/directfb/evas_engine_dfb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/engines/directfb/evas_engine_dfb.c b/legacy/evas/src/lib/engines/directfb/evas_engine_dfb.c index c2f634c29e..12997410d9 100644 --- a/legacy/evas/src/lib/engines/directfb/evas_engine_dfb.c +++ b/legacy/evas/src/lib/engines/directfb/evas_engine_dfb.c @@ -421,7 +421,7 @@ evas_engine_directfb_context_clip_get(void *data, void *context, int *x, int *y, *x = ((RGBA_Draw_Context *) context)->clip.x; *y = ((RGBA_Draw_Context *) context)->clip.y; *w = ((RGBA_Draw_Context *) context)->clip.w; - *h = ((RGBA_Draw_Context *) contect)->clip.h; + *h = ((RGBA_Draw_Context *) context)->clip.h; return ((RGBA_Draw_Context *) context)->clip.use; } @@ -473,6 +473,7 @@ evas_engine_directfb_context_multiplier_get(void *data, void *context, int *r, int *g, int *b, int *a) { Render_Engine *re; + RGBA_Draw_Context *dc = (RGBA_Draw_Context *) context; re = (Render_Engine *) data; *r = (int)(R_VAL(&((RGBA_Draw_Context *)context)->mul.col));