From c324d26c18be3f683ce3081ef770293271bd5065 Mon Sep 17 00:00:00 2001 From: Don Pellegrino Date: Thu, 09 Jul 2009 18:51:38 +0000 Subject: Initialized the set of selected items to none on startup. --- diff --git a/src/model/selection_info_init.c b/src/model/selection_info_init.c index 7a98e74..aea2b07 100644 --- a/src/model/selection_info_init.c +++ b/src/model/selection_info_init.c @@ -1,8 +1,10 @@ #include "selection_info_init.h" +#include void selection_info_init (SELECTION_INFO * s) -{ +{ + memset (s->set, 0, sizeof (bool) * ROWS); s->active = false; s->purpose = SET; s->x = 0; -- cgit v0.8.3.1-22-g547a