diff options
| author | 2023-05-22 13:54:23 +0200 | |
|---|---|---|
| committer | 2023-05-22 13:54:34 +0200 | |
| commit | ddbc47fc9b8ad93ed5ca8bebe9fbfbf359e3e5c5 (patch) | |
| tree | 2d543b31b1a3a74849229671e2670a67f5829d35 /src | |
| parent | b54992fa274630251ca398c1276b2d34f8ea39f3 (diff) | |
ioport: put IPT_ADJUSTER in same class as IPT_CONFIG
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/ioport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ioport.cpp b/src/emu/ioport.cpp index f74fe2c30f0..5b0670ea5f4 100644 --- a/src/emu/ioport.cpp +++ b/src/emu/ioport.cpp @@ -886,7 +886,7 @@ ioport_type_class ioport_field::type_class() const noexcept return INPUT_CLASS_KEYBOARD; // configuration settings (specific names required) - if (m_type == IPT_CONFIG) + if (m_type == IPT_CONFIG || m_type == IPT_ADJUSTER) return INPUT_CLASS_CONFIG; // DIP switches (specific names required) |
