summaryrefslogtreecommitdiff
path: root/apps/plugins/chessclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/chessclock.c')
-rw-r--r--apps/plugins/chessclock.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/chessclock.c b/apps/plugins/chessclock.c
index f1482df990..3dfb0fef6c 100644
--- a/apps/plugins/chessclock.c
+++ b/apps/plugins/chessclock.c
@@ -17,6 +17,7 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#include "plugin.h" 19#include "plugin.h"
20#include "mem_function_wrappers.h"
20 21
21PLUGIN_HEADER 22PLUGIN_HEADER
22 23
@@ -153,6 +154,7 @@ PLUGIN_HEADER
153 it's nice not to have to pass the api pointer in all function calls 154 it's nice not to have to pass the api pointer in all function calls
154 in the plugin */ 155 in the plugin */
155static struct plugin_api* rb; 156static struct plugin_api* rb;
157MEM_FUNCTION_WRAPPERS(rb);
156#define MAX_PLAYERS 10 158#define MAX_PLAYERS 10
157 159
158static struct { 160static struct {
@@ -192,7 +194,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
192 194
193 (void)parameter; 195 (void)parameter;
194 rb=api; 196 rb=api;
195
196 rb->memset(&settings, 0, sizeof(settings)); 197 rb->memset(&settings, 0, sizeof(settings));
197 198
198 /* now go ahead and have fun! */ 199 /* now go ahead and have fun! */