Skip to content

Commit 2e4756b

Browse files
committed
rename m_paramreq_bit => m_paramin_bit
1 parent 77aae17 commit 2e4756b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/mame/roland/roland_pg1000.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ void pg1000_state::pg1000(machine_config &config)
257257
/* TODO: What is the correct way of declaring this "Parameter In" port? */
258258
// auto &paramin(MIDI_PORT(config, "param_in"));
259259
// midiin_slot(paramin);
260-
// paramreq.rxd_handler().set([this] (bool state) { m_paramreq_bit = state; });
260+
// paramreq.rxd_handler().set([this] (bool state) { m_paramin_bit = state; });
261261

262262
UPD78C10(config, m_maincpu, 12_MHz_XTAL);
263263
m_maincpu->set_addrmap(AS_PROGRAM, &pg1000_state::mem_map);
@@ -266,7 +266,7 @@ void pg1000_state::pg1000(machine_config &config)
266266
m_maincpu->pc_in_cb().set([this] {
267267
return (
268268
(m_mdin_bit && m_midi_in_enable) ||
269-
(m_paramreq_bit && m_param_in_enable)) ? 2 : 0;
269+
(m_paramin_bit && m_param_in_enable)) ? 2 : 0;
270270
});
271271
m_maincpu->pc_out_cb().set([this](u8 data)
272272
{

src/mame/roland/roland_pg1000.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class pg1000_state : public driver_device
2727
, m_scan(0)
2828
, m_an_select(0)
2929
, m_mdin_bit(false)
30-
, m_paramreq_bit(false)
30+
, m_paramin_bit(false)
3131
, m_midi_in_enable(false)
3232
, m_param_in_enable(false)
3333
{
@@ -56,7 +56,7 @@ class pg1000_state : public driver_device
5656
u8 m_scan;
5757
u8 m_an_select;
5858
bool m_mdin_bit;
59-
bool m_paramreq_bit;
59+
bool m_paramin_bit;
6060
bool m_midi_in_enable;
6161
bool m_param_in_enable;
6262
};

0 commit comments

Comments
 (0)