From c04e2cbe0b88d67fed6b0316633cb9cbed4c76aa Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 26 Dec 2020 13:38:14 -0500 Subject: natkeyboard: Remove from ioport_manager --- src/emu/debug/debugcmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu/debug/debugcmd.cpp') diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 3aa7544f3ff..7e820bafa84 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -3930,7 +3930,7 @@ void debugger_commands::execute_unmount(int ref, const std::vector void debugger_commands::execute_input(int ref, const std::vector ¶ms) { - m_machine.ioport().natkeyboard().post_coded(params[0].c_str()); + m_machine.natkeyboard().post_coded(params[0].c_str()); } @@ -3956,7 +3956,7 @@ void debugger_commands::execute_dumpkbd(int ref, const std::vector } // loop through all codes - std::string buffer = m_machine.ioport().natkeyboard().dump(); + std::string buffer = m_machine.natkeyboard().dump(); // and output it as appropriate if (file != nullptr) -- cgit v1.2.3