From cc5110575fe706f540785d90b6a4d992c364f306 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Tue, 30 Apr 2013 03:14:49 +0000 Subject: [PATCH] - Fixed: The constructor for single-lump fonts did not initialize the Cursor field. SVN r4239 (trunk) --- src/v_font.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/v_font.cpp b/src/v_font.cpp index 6bb130716..eb714fb93 100644 --- a/src/v_font.cpp +++ b/src/v_font.cpp @@ -908,6 +908,7 @@ FFont::FFont (int lump) Chars = NULL; PatchRemap = NULL; Name = NULL; + Cursor = '_'; } //==========================================================================