diff options
Diffstat (limited to 'src/modules/modBasic.c')
| -rw-r--r-- | src/modules/modBasic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/modBasic.c b/src/modules/modBasic.c index 012466e..3b0f9b3 100644 --- a/src/modules/modBasic.c +++ b/src/modules/modBasic.c @@ -35,10 +35,10 @@ int init(export_fce_t * p) int draw(int x, int y, int w, int h) { - UNUSET(x); - UNUSET(y); - UNUSET(w); - UNUSET(h); + UNUSED(x); + UNUSED(y); + UNUSED(w); + UNUSED(h); printf("Drawing Basic module.\n"); return 0; |