From 303326d256b6fd2b4811f0a98b2c120ea426fd76 Mon Sep 17 00:00:00 2001 From: curt Date: Sun, 10 Oct 1999 16:47:51 +0000 Subject: [PATCH] Expanded size for hud text strings to 64. --- src/Cockpit/hud.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cockpit/hud.hxx b/src/Cockpit/hud.hxx index 4b5006070..9a9ac7ba7 100644 --- a/src/Cockpit/hud.hxx +++ b/src/Cockpit/hud.hxx @@ -236,10 +236,10 @@ extern float HUD_matrix[16]; class fgText { private: float x, y; - char msg[32]; + char msg[64]; public: fgText( float x = 0, float y = 0, char *c = NULL ) - : x(x), y(y) {strncpy(msg,c,32-1);} + : x(x), y(y) {strncpy(msg,c,64-1);} fgText( const fgText & image ) : x(image.x), y(image.y) {strcpy(msg,image.msg);}