X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FGameDraw.cpp;h=8bbeb349c208acb93d22bf39ea01ce5c813508d7;hb=e468592233fbcc6ab8d7892cc0d7afa05dbbee39;hp=7b195dfdcc6cc20d059c532e91fb1205baedae7f;hpb=cf610b0dfbf15ffafaefcae72a44957095fd7740;p=lugaru.git diff --git a/Source/GameDraw.cpp b/Source/GameDraw.cpp index 7b195df..8bbeb34 100644 --- a/Source/GameDraw.cpp +++ b/Source/GameDraw.cpp @@ -67,7 +67,7 @@ extern bool devtools; extern int mainmenu; extern int bloodtoggle; extern int difficulty; -extern bool decals; +extern bool decalstoggle; extern float texdetail; extern bool musictoggle; extern float smoketex; @@ -1553,12 +1553,12 @@ int Game::DrawGLScene(StereoSide side) int offset = 0; if (consoleselected >= 60) offset = consoleselected - 60; - text->glPrint(10, 30, " ]", 0, 1, 1024, 768); + textmono->glPrint(10, 30, " ]", 0, 1, 1024, 768); if (consoleblink) { - text->glPrint(30 + (float)(consoleselected) * 10 - offset * 10, 30, "_", 0, 1, 1024, 768); + textmono->glPrint(30 + (float)(consoleselected) * 10 - offset * 10, 30, "_", 0, 1, 1024, 768); } for (unsigned i = 0; i < 15; i++) { - text->glPrint(30 - offset * 10, 30 + i * 20, consoletext[i], 0, 1, 1024, 768); + textmono->glPrint(30 - offset * 10, 30 + i * 20, consoletext[i], 0, 1, 1024, 768); } } }