diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-05-04 11:20:47 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-05-04 11:20:47 +0000 |
| commit | 20921e613e78599dfbef2d805d3bf3dfad39a7e6 (patch) | |
| tree | c4ce60f492bf807f419880c81eaac5b07f470601 | |
| parent | 7ba4c00b981893d99ce47e6e43d773ff1168ff88 (diff) | |
| download | puzzles-20921e613e78599dfbef2d805d3bf3dfad39a7e6.zip puzzles-20921e613e78599dfbef2d805d3bf3dfad39a7e6.tar.gz puzzles-20921e613e78599dfbef2d805d3bf3dfad39a7e6.tar.bz2 puzzles-20921e613e78599dfbef2d805d3bf3dfad39a7e6.tar.xz | |
Forgot to initialise the font variables in the Windows frontend structure.
[originally from svn r4200]
| -rw-r--r-- | windows.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |