Cosmetic update of static globals

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5061 4a71c877-e1ca-e34f-864e-861f7616d084
master
Per Inge Mathisen 2008-05-12 12:39:16 +00:00
parent 9640d3b0a6
commit 07c9062105
1 changed files with 14 additions and 14 deletions

View File

@ -28,26 +28,26 @@
#include "script.h"
// array to store release functions
static VAL_CREATE_FUNC *asCreateFuncs;
static VAL_RELEASE_FUNC *asReleaseFuncs;
static VAL_CREATE_FUNC *asCreateFuncs = NULL;
static VAL_RELEASE_FUNC *asReleaseFuncs = NULL;
static UDWORD numFuncs;
// The list of currently active triggers
ACTIVE_TRIGGER *psTrigList;
/** The list of currently active triggers */
ACTIVE_TRIGGER *psTrigList = NULL;
// The list of callback triggers
ACTIVE_TRIGGER *psCallbackList;
/** The list of callback triggers */
ACTIVE_TRIGGER *psCallbackList = NULL;
// The new triggers added this loop
static ACTIVE_TRIGGER *psAddedTriggers;
/** The new triggers added this loop */
static ACTIVE_TRIGGER *psAddedTriggers = NULL;
// The trigger which is currently firing
static ACTIVE_TRIGGER *psFiringTrigger;
static BOOL triggerChanged;
static UDWORD updateTime;
/** The trigger which is currently firing */
static ACTIVE_TRIGGER *psFiringTrigger = NULL;
static BOOL triggerChanged;
static UDWORD updateTime;
// The currently allocated contexts
SCRIPT_CONTEXT *psContList;
/** The currently allocated contexts */
SCRIPT_CONTEXT *psContList = NULL;
// The current event trace level
static SDWORD eventTraceLevel=3;