From: Simon Tatham Date: Tue, 4 May 2004 11:20:47 +0000 (+0000) Subject: Forgot to initialise the font variables in the Windows frontend structure. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=20921e613e78599dfbef2d805d3bf3dfad39a7e6;p=sgt-puzzles.git Forgot to initialise the font variables in the Windows frontend structure. [originally from svn r4200] --- diff --git a/windows.c b/windows.c index 6fb651c..4213e4c 100644 --- a/windows.c +++ b/windows.c @@ -328,6 +328,9 @@ static frontend *new_window(HINSTANCE inst) fe->timer = 0; + fe->fonts = NULL; + fe->nfonts = fe->fontsize = 0; + { int i, ncolours; float *colours;