From: curt Date: Sun, 10 Oct 1999 16:47:51 +0000 (+0000) Subject: Expanded size for hud text strings to 64. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=303326d256b6fd2b4811f0a98b2c120ea426fd76;p=flightgear.git Expanded size for hud text strings to 64. --- 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);}