From: simon 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: https://git.distorted.org.uk/~mdw/sgt/puzzles/commitdiff_plain/6beae1313e7dacce5c1ea85a47edd5f8c4df4ce1 Forgot to initialise the font variables in the Windows frontend structure. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@4200 cda61777-01e9-0310-a592-d414129be87e --- 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;