Actually make colors change

This commit is contained in:
osmarks 2018-07-26 21:54:05 +01:00
parent 1a33abd03b
commit 98785c57bb
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ local protocol = "wyvern"
local function init_screen(scr, bg, fg)
scr.setCursorPos(1, 1)
scr.setBackgroundColor(colors.white)
scr.setTextColor(colors.black)
scr.setBackgroundColor(bg)
scr.setTextColor(fg)
scr.clear()
end