summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/vcs_paddles.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/vcs_paddles.h')
-rw-r--r--src/mess/machine/vcs_paddles.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mess/machine/vcs_paddles.h b/src/mess/machine/vcs_paddles.h
index c2056dc7884..535ae2f573f 100644
--- a/src/mess/machine/vcs_paddles.h
+++ b/src/mess/machine/vcs_paddles.h
@@ -43,6 +43,14 @@ protected:
virtual UINT8 vcs_joy_r();
virtual UINT8 vcs_pot_x_r();
virtual UINT8 vcs_pot_y_r();
+
+ virtual bool has_pot_x() { return true; }
+ virtual bool has_pot_y() { return true; }
+
+private:
+ required_ioport m_joy;
+ required_ioport m_potx;
+ required_ioport m_poty;
};