From b8531978df60b89dee391675d8950879c0031b0d Mon Sep 17 00:00:00 2001 From: meep-eep Date: Sun, 1 Dec 2002 14:00:19 +0000 Subject: [PATCH] TFB_DrawCommandQueue->FullSize wasn't initialised. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@275 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/graphics/sdl/dcqueue.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sc2/src/sc2code/libs/graphics/sdl/dcqueue.c b/sc2/src/sc2code/libs/graphics/sdl/dcqueue.c index 15a8a8ae6..a2a496795 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/dcqueue.c +++ b/sc2/src/sc2code/libs/graphics/sdl/dcqueue.c @@ -141,6 +141,7 @@ TFB_DrawCommandQueue_Create() myQueue->Front = 0; myQueue->InsertionPoint = 0; myQueue->Batching = 0; + myQueue->FullSize = 0; myQueue->Size = 0; DCQ_sem = CreateSemaphore(1);