X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fopengl%2Fr_game.pas;h=46ac2fd3d479ebdd7fc6cd0049970b4159c37650;hp=a31c4afccf67c14505a4f7ed56a09e9be0ef3380;hb=5f94c756b7105cb6cc3c947451774c93f463b250;hpb=c6b9f83af191797b22c2a07e2046d74802cb2336 diff --git a/src/game/opengl/r_game.pas b/src/game/opengl/r_game.pas index a31c4af..46ac2fd 100644 --- a/src/game/opengl/r_game.pas +++ b/src/game/opengl/r_game.pas @@ -40,7 +40,7 @@ implementation g_holmes, {$ENDIF} SysUtils, Classes, Math, - g_base, r_graphics, + g_base, g_basic, r_graphics, g_system, g_touch, MAPDEF, xprofiler, utils, wadreader, e_input, e_sound, @@ -1712,6 +1712,8 @@ var back: string; plView1, plView2: TPlayer; Split: Boolean; + MsgLineLength: Integer; + MsgText: String; begin if gExit = EXIT_QUIT then Exit; @@ -1859,12 +1861,14 @@ begin w := 0; h := 0; e_CharFont_GetSizeFmt(gMenuFont, MessageText, w, h); + MsgLineLength := (gScreenWidth - 204) div e_CharFont_GetMaxWidth(gMenuFont); + MsgText := b_Text_Wrap(b_Text_Format(MessageText), MsgLineLength); if Split then e_CharFont_PrintFmt(gMenuFont, (gScreenWidth div 2)-(w div 2), - (gScreenHeight div 2)-(h div 2), MessageText) + (gScreenHeight div 2)-(h div 2), MsgText) else e_CharFont_PrintFmt(gMenuFont, (gScreenWidth div 2)-(w div 2), - Round(gScreenHeight / 2.75)-(h div 2), MessageText); + Round(gScreenHeight / 2.75)-(h div 2), MsgText); end; if IsDrawStat or (gSpectMode = SPECT_STATS) then