// $Id: DummyJoystick.cc 4839 2005-11-11 22:00:07Z m9710797 $ #include "DummyJoystick.hh" namespace openmsx { byte DummyJoystick::read(const EmuTime& /*time*/) { return 0x3F; } void DummyJoystick::write(byte /*value*/, const EmuTime& /*time*/) { // do nothing } const std::string& DummyJoystick::getDescription() const { static const std::string EMPTY; return EMPTY; } void DummyJoystick::plugHelper(Connector& /*connector*/, const EmuTime& /*time*/) { } void DummyJoystick::unplugHelper(const EmuTime& /*time*/) { } } // namespace openmsx