diff options
Diffstat (limited to 'src/emu/ioport.h')
-rw-r--r-- | src/emu/ioport.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/ioport.h b/src/emu/ioport.h index 376df1347be..8554455b114 100644 --- a/src/emu/ioport.h +++ b/src/emu/ioport.h @@ -1389,7 +1389,6 @@ public: running_machine &machine() const noexcept { return m_machine; } const ioport_list &ports() const noexcept { return m_portlist; } bool safe_to_read() const noexcept { return m_safe_to_read; } - natural_keyboard &natkeyboard() noexcept { assert(m_natkeyboard != nullptr); return *m_natkeyboard; } // type helpers const std::vector<input_type_entry> &types() const noexcept { return m_typelist; } @@ -1459,7 +1458,6 @@ private: // specific special global input states simple_list<digital_joystick> m_joystick_list; // list of digital joysticks - std::unique_ptr<natural_keyboard> m_natkeyboard; // natural keyboard support // frame time tracking attotime m_last_frame_time; // time of the last frame callback |