gui.cleartext() Implemented. This Function Should Always Be Called After emu.yield() In Order For The Later To Work Correctly.
This commit is contained in:
parent
ea2bdac456
commit
39e640aee9
|
@ -221,6 +221,7 @@ namespace BizHawk.MultiClient
|
|||
{
|
||||
"text",
|
||||
"alert",
|
||||
"cleartext",
|
||||
};
|
||||
|
||||
public static string[] EmuFunctions = new string[]
|
||||
|
@ -426,6 +427,11 @@ namespace BizHawk.MultiClient
|
|||
do_gui_text(luaX, luaY, luaStr, true, anchor);
|
||||
}
|
||||
|
||||
public void gui_cleartext()
|
||||
{
|
||||
Global.RenderPanel.ClearGUIText();
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
//Emu library
|
||||
//----------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue