MCPcopy Create free account
hub / github.com/TASEmulators/fceux / gui_popup

Function gui_popup

src/lua-engine.cpp:5696–5699  ·  view source on GitHub ↗

string gui.popup(string message, string type = "ok", string icon = "message") string input.popup(string message, string type = "yesno", string icon = "question")

Source from the content-addressed store, hash-verified

5694// string gui.popup(string message, string type = "ok", string icon = "message")
5695// string input.popup(string message, string type = "yesno", string icon = "question")
5696static int gui_popup(lua_State *L)
5697{
5698 return doPopup(L, "ok", "message");
5699}
5700static int input_popup(lua_State *L)
5701{
5702 return doPopup(L, "yesno", "question");

Callers

nothing calls this directly

Calls 1

doPopupFunction · 0.85

Tested by

no test coverage detected