summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/esqpanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/esqpanel.h')
-rw-r--r--src/mame/machine/esqpanel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/esqpanel.h b/src/mame/machine/esqpanel.h
index 5e6580c22d5..77ffc6f9daf 100644
--- a/src/mame/machine/esqpanel.h
+++ b/src/mame/machine/esqpanel.h
@@ -57,21 +57,21 @@ protected:
std::vector<uint8_t> m_light_states;
- bool m_eps_mode = 0;
+ bool m_eps_mode = false;
esqpanel::external_panel_server *m_external_panel_server;
private:
static const int XMIT_RING_SIZE = 16;
- bool m_bCalibSecondByte = 0;
- bool m_bButtonLightSecondByte = 0;
+ bool m_bCalibSecondByte = false;
+ bool m_bButtonLightSecondByte = false;
devcb_write_line m_write_tx;
devcb_write16 m_write_analog;
uint8_t m_xmitring[XMIT_RING_SIZE];
int m_xmit_read, m_xmit_write = 0;
- bool m_tx_busy = 0;
+ bool m_tx_busy = false;
emu_timer *m_external_timer = nullptr;
};