From 2aa608af27527ac38a6a7348fb549cd6061518bf Mon Sep 17 00:00:00 2001 From: helixhorned Date: Wed, 9 Apr 2014 18:51:33 +0000 Subject: [PATCH] LunaCON: fix 'screentext' command. git-svn-id: https://svn.eduke32.com/eduke32@4427 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/lunatic/control.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/source/lunatic/control.lua b/polymer/eduke32/source/lunatic/control.lua index 3feacbc3f..a307f5c64 100644 --- a/polymer/eduke32/source/lunatic/control.lua +++ b/polymer/eduke32/source/lunatic/control.lua @@ -968,7 +968,7 @@ function _screentext(tilenum, x, y, z, blockangle, charangle, q, shade, pal, ori orientation = text_check_common(tilenum, orientation) local cstr = bcheck.quote_idx(q) - ffiC.G_ScreenText(tilenum, x, y, z, blockangle, charangle, cstr, shade, pal, orientation, + ffiC.G_ScreenText(tilenum, x, y, z, blockangle, charangle, cstr, shade, pal, bor(2,orientation), alpha, xspace, yline, xbetween, ybetween, f, x1, y1, x2, y2) end