From 0a9d86616748d6bea86c565b72d5ca53397f7595 Mon Sep 17 00:00:00 2001 From: avolkov Date: Fri, 29 Apr 2005 02:20:07 +0000 Subject: [PATCH] Uninited value fix; related to bug #542 git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1694 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/process.c b/sc2/src/sc2code/process.c index 728369ac5..82ccc92f8 100644 --- a/sc2/src/sc2code/process.c +++ b/sc2/src/sc2code/process.c @@ -1004,7 +1004,7 @@ InitDisplayList (void) DisplayLinks = MakeLinks (END_OF_LIST, END_OF_LIST); } -UWORD nth_frame; +UWORD nth_frame = 0; void RedrawQueue (BOOLEAN clear)