Use new-style config macros.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 24 Aug 2004 16:53:10 +0000 (16:53 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 24 Aug 2004 16:53:10 +0000 (16:53 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@165 38d2e660-2303-0410-9eaa-f027e97ec537

mware/gfx.c

index f4b0da33c40540cc69fff3c2128db9961179ccef..9f0079db67fc8e11ec466527a7153eb865a73020 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*
  * $Log$
+ * Revision 1.4  2004/08/24 16:53:10  bernie
+ * Use new-style config macros.
+ *
  * Revision 1.3  2004/08/04 03:16:59  bernie
  * Switch to new DevLib CONFIG_ convention.
  *
@@ -93,7 +96,7 @@ void gfx_DrawLine(Bitmap *bm, coord_t x1, coord_t y1, coord_t x2, coord_t y2)
        int x, y, e, len, adx, ady, signx, signy;
 
 
-#ifdef CONFIG_GFX_CLIPPING
+#if CONFIG_GFX_CLIPPING
        /* FIXME: broken */
 
        #define XMIN 0
@@ -149,7 +152,7 @@ void gfx_DrawLine(Bitmap *bm, coord_t x1, coord_t y1, coord_t x2, coord_t y2)
        #undef XMAX
        #undef YMAX
 
-#endif /* CONFIG_GRAPH_CLIPPING */
+#endif /* CONFIG_GFX_CLIPPING */
 
 
        if (x2 > x1)