diff options
author | 2020-12-26 13:38:14 -0500 | |
---|---|---|
committer | 2020-12-26 13:39:34 -0500 | |
commit | c04e2cbe0b88d67fed6b0316633cb9cbed4c76aa (patch) | |
tree | 2d845a3297d90e110ee4364510ae982b1b0a098f /src/emu/debug/debugcmd.cpp | |
parent | 43f569e58f26d23032b950ebcbd02f352532ba95 (diff) |
natkeyboard: Remove from ioport_manager
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) |