summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ioport.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ioport.h')
-rw-r--r--src/emu/ioport.h2
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
'inline' src='//www.gravatar.com/avatar/31beabae907e4ed2cf368847287d5e90?s=13&d=retro' /> Fabio Priuli2009-05-011-4/+4 * Removed msb/lsb handlers from taitosnd. Updated all drivers to Aaron Giles2009-03-301-4/+4 * Removed device types from device queries that use tags, under the Aaron Giles2009-03-021-2/+2 * Another batch of tagging, this time for speakers/screens: Aaron Giles2009-02-251-3/+3 * Device tag renaming. Moving away from generic names like "main" Aaron Giles2009-02-251-27/+27 * Ok, this is The Big One. Aaron Giles2009-02-111-8/+10 * From: Oliver Stoeneberg [mailto:oliverst@online.de] Aaron Giles2009-01-141-4/+0 * Removed MDRV_INTERLEAVE(x), which specified the minimum scheduling Aaron Giles2008-12-201-1/+1 * From: Atari Ace [atari_ace@verizon.net] Aaron Giles2008-12-171-0/+1 * Here's the big one.... Aaron Giles2008-12-111-2/+2 * Cleanups and version bump for 0.128u4.mame0128u4 Aaron Giles2008-11-241-1/+1 * Namco compile cleanups. R. Belmont2008-11-151-4/+5 * WARNING: this compiles, but not fully cleanly, and a number of drivers Aaron Giles2008-11-141-15/+15 * Massive API cleanup/change. The primary goal is that all CPU- Aaron Giles2008-11-131-11/+11 * Major cpuintrf changes: