From 88ae1ff267c541ded537672ac7b7f29308ad701d Mon Sep 17 00:00:00 2001 From: Chris Young Date: Thu, 2 Jun 2016 00:44:20 +0100 Subject: Ensure variables are declared correctly --- frontends/amiga/theme.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'frontends/amiga/theme.c') diff --git a/frontends/amiga/theme.c b/frontends/amiga/theme.c index 40a9503c8..e18ee3365 100644 --- a/frontends/amiga/theme.c +++ b/frontends/amiga/theme.c @@ -51,9 +51,12 @@ #include "amiga/theme.h" #include "amiga/misc.h" -struct BitMap *throbber = NULL; -struct bitmap *throbber_nsbm = NULL; -int throbber_frames, throbber_update_interval; +ULONG throbber_width; +ULONG throbber_height; + +static struct BitMap *throbber = NULL; +static struct bitmap *throbber_nsbm = NULL; +static int throbber_frames, throbber_update_interval; static Object *mouseptrobj[AMI_LASTPOINTER+1]; static struct BitMap *mouseptrbm[AMI_LASTPOINTER+1]; -- cgit v1.2.3