1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-17 21:23:22 -07:00

use new bizhawk api

This commit is contained in:
Connor Olding 2016-09-27 12:25:12 -07:00
parent 9e39cf0f4c
commit 1840831980

View File

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