[AD] extra struct qualifier |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
The attached patch takes off the 'struct' keyword from two functions in
include/allegro/inline/draw.inl to make them consistent with the rest of
the functions.
Index: draw.inl
===================================================================
RCS file: /cvsroot/alleg/allegro/include/allegro/inline/draw.inl,v
retrieving revision 1.9
diff -u -r1.9 draw.inl
--- draw.inl 7 Mar 2005 22:55:23 -0000 1.9
+++ draw.inl 3 Apr 2005 21:44:36 -0000
@@ -83,7 +83,7 @@
})
-AL_INLINE(void, triangle, (struct BITMAP *bmp, int x1, int y_1, int x2, int y2, int x3, int y3, int color),
+AL_INLINE(void, triangle, (BITMAP *bmp, int x1, int y_1, int x2, int y2, int x3, int y3, int color),
{
ASSERT(bmp);
@@ -169,7 +169,7 @@
-AL_INLINE(void, polygon3d, (BITMAP *bmp, int type, struct BITMAP *texture, int vc, V3D *vtx[]),
+AL_INLINE(void, polygon3d, (BITMAP *bmp, int type, BITMAP *texture, int vc, V3D *vtx[]),
{
ASSERT(bmp);