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:
Rolanmen1 2012-04-04 20:09:50 +00:00
parent ea2bdac456
commit 39e640aee9
1 changed files with 6 additions and 0 deletions

View File

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