diff options
author | 2021-11-02 15:31:03 +1100 | |
---|---|---|
committer | 2021-11-02 15:31:03 +1100 | |
commit | d775a2731d7be00fe53932c43cb2321769ef1989 (patch) | |
tree | 16c75c22431717bb731c238e8796f41f4bba006d /src/frontend/mame/luaengine_input.cpp | |
parent | e4c0f2ddacb44863f4b9bb52b76d1f5f8e5b03a8 (diff) |
plugins: Moved the timecode recording functionality to a plugin.
Diffstat (limited to 'src/frontend/mame/luaengine_input.cpp')
-rw-r--r-- | src/frontend/mame/luaengine_input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/luaengine_input.cpp b/src/frontend/mame/luaengine_input.cpp index 71fb4d34210..2fffe8b8af3 100644 --- a/src/frontend/mame/luaengine_input.cpp +++ b/src/frontend/mame/luaengine_input.cpp @@ -203,7 +203,7 @@ void lua_engine::initialize_input(sol::table &emu) }); - auto ioport_port_type = sol().registry().new_usertype<ioport_port>("ioport_port", "new", sol::no_constructor); + auto ioport_port_type = sol().registry().new_usertype<ioport_port>("ioport_port", sol::no_constructor); ioport_port_type["read"] = &ioport_port::read; ioport_port_type["write"] = &ioport_port::write; ioport_port_type["field"] = &ioport_port::field; |