Fix compiler warning, GRAPHICS_FUNC_ARGS is not declared in graphics.h

This commit is contained in:
jacksonmj 2012-04-11 17:04:37 +01:00 committed by jacksonmj
parent 9e18556ae6
commit 1d59194bfc
2 changed files with 1 additions and 2 deletions

View File

@ -87,8 +87,6 @@ typedef struct gcache_item gcache_item;
gcache_item *graphicscache;
int graphics_DEFAULT(GRAPHICS_FUNC_ARGS);
void prepare_graphicscache();
char * generate_gradient(pixel * colours, float * points, int pointcount, int size);

View File

@ -274,6 +274,7 @@ struct particle
};
typedef struct particle particle;
int graphics_DEFAULT(GRAPHICS_FUNC_ARGS);
int graphics_FIRE(GRAPHICS_FUNC_ARGS);
int graphics_SMKE(GRAPHICS_FUNC_ARGS);
int graphics_PLSM(GRAPHICS_FUNC_ARGS);