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