diff options
author | 2016-04-16 18:01:48 +0200 | |
---|---|---|
committer | 2016-04-16 18:01:48 +0200 | |
commit | fc48cb17f314d3a67ea90885c76191c99fd295b6 (patch) | |
tree | 8b787fbe5bd5303cf12cfdf38f4de796b69eb955 /src/emu/luaengine.h | |
parent | 816860f2d81a40f9aecc8c7ef9f5ab2c42e56d7f (diff) |
added print_verbose, print_info, print_debug and print_error to lua, and used it instead of print (nw)
Diffstat (limited to 'src/emu/luaengine.h')
-rw-r--r-- | src/emu/luaengine.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/luaengine.h b/src/emu/luaengine.h index 269ea3d46b3..3b4c85ce939 100644 --- a/src/emu/luaengine.h +++ b/src/emu/luaengine.h @@ -141,6 +141,11 @@ private: static int l_emu_register_frame(lua_State *L); static int l_emu_register_frame_done(lua_State *L); static int l_emu_register_menu(lua_State *L); + static std::string get_print_buffer(lua_State *L); + static int l_osd_printf_verbose(lua_State *L); + static int l_osd_printf_error(lua_State *L); + static int l_osd_printf_info(lua_State *L); + static int l_osd_printf_debug(lua_State *L); static int register_function(lua_State *L, const char *id); // "emu.machine" namespace |