From 1840831980205e77b4a8f170045a4d6a1d9ab22e Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Tue, 27 Sep 2016 12:25:12 -0700 Subject: [PATCH] use new bizhawk api --- Lua/lib/messages.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lua/lib/messages.lua b/Lua/lib/messages.lua index 8a91dfd..995cf1f 100644 --- a/Lua/lib/messages.lua +++ b/Lua/lib/messages.lua @@ -4,7 +4,7 @@ local function T(x, y, color, pos, s, ...) if #{...} > 0 then s = s:format(...) end - gui.text(10*x + 2, 16*y + 4, s, color or "white", nil, pos or "bottomright") + gui.text(10*x + 2, 16*y + 4, s, color or "white", pos or "bottomright") end local function T_BR(x, y, color, ...) T(x, y, color, "bottomright", ...) end