lualoader: Use string literal \xNN instead of string.char()

This commit is contained in:
Kyle Evans 2018-03-02 03:05:36 +00:00
parent cb4fbe4ebb
commit 972c7fcd3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330263

View File

@ -313,13 +313,13 @@ function drawer.drawbox()
local w = drawer.box_pos_dim.w
local h = drawer.box_pos_dim.h
local hl = string.char(0xCD)
local vl = string.char(0xBA)
local hl = "\xCD"
local vl = "\xBA"
local tl = string.char(0xC9)
local bl = string.char(0xC8)
local tr = string.char(0xBB)
local br = string.char(0xBC)
local tl = "\xC9"
local bl = "\xC8"
local tr = "\xBB"
local br = "\xBC"
screen.setcursor(x, y); print(tl)
screen.setcursor(x, y+h); print(bl)