diff options
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r-- | src/emu/debug/debugcmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<std::string> void debugger_commands::execute_input(int ref, const std::vector<std::string> ¶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<std::string> } // 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) |