X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCockpit%2Fhud_labl.cxx;h=95d5cc19a9da5cd034ea84d46741b44772151f1e;hb=029dda3297e3697438e1a58188527cbae90beebe;hp=2c8c62f67c54c112957e11bb3bedcd1f09889ecd;hpb=30d239eedad1bb4d296ec459a741beeb7618aaf3;p=flightgear.git diff --git a/src/Cockpit/hud_labl.cxx b/src/Cockpit/hud_labl.cxx index 2c8c62f67..95d5cc19a 100644 --- a/src/Cockpit/hud_labl.cxx +++ b/src/Cockpit/hud_labl.cxx @@ -3,9 +3,9 @@ #ifdef USE_HUD_TextList -#define textString( x , y, text, font,digit ) TextString( text, x , y,digit ) //suma +#define textString( x , y, text, digit ) TextString( text, x , y,digit ) //suma #else -#define textString( x , y, text, font,digit ) puDrawString ( guiFnt, text, x, y ); //suma +#define textString( x , y, text, digit ) puDrawString ( guiFnt, text, x, y ); //suma #endif //======================= Top of instr_label class ========================= @@ -189,12 +189,12 @@ draw( void ) // Required method in base class if( fontSize == HUD_FONT_SMALL ) { textString( scrn_rect.left + posincr, scrn_rect.top, - label_buffer, GLUT_BITMAP_8_BY_13 ,get_digits()); //suma + label_buffer, get_digits()); //suma } else { if( fontSize == HUD_FONT_LARGE ) { textString( scrn_rect.left + posincr, scrn_rect.top, - label_buffer, GLUT_BITMAP_9_BY_15 ,get_digits()); //suma + label_buffer, get_digits()); //suma } } }