LunaCON: fix 'screentext' command.

git-svn-id: https://svn.eduke32.com/eduke32@4427 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2014-04-09 18:51:33 +00:00
parent e1845c8d05
commit 2aa608af27

View file

@ -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