Skip to content

Commit e0bac70

Browse files
committed
typo
1 parent 2f53d07 commit e0bac70

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/mame/sinclair/specnext.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class specnext_state : public spectrum_128_state
134134
void turbosound_address_w(u8 data);
135135
u8 mf_port_r(offs_t addr);
136136
void mf_port_w(offs_t addr, u8 data);
137-
attotime cooper_until_pos_r(u16 pos);
137+
attotime copper_until_pos_r(u16 pos);
138138

139139
void bank_update(u8 bank, u8 count);
140140
void bank_update(u8 bank);
@@ -1098,7 +1098,7 @@ void specnext_state::mf_port_w(offs_t addr, u8 data)
10981098
m_mf->port_mf_disable_rd_w(0);
10991099
}
11001100

1101-
attotime specnext_state::cooper_until_pos_r(u16 pos)
1101+
attotime specnext_state::copper_until_pos_r(u16 pos)
11021102
{
11031103
const u16 vcount = BIT(pos, 0, 9);
11041104
const u16 hcount = ((BIT(pos, 9, 6) << 3) + (BIT(pos, 15) ? 12 : 0)) << 1;
@@ -3536,7 +3536,7 @@ void specnext_state::tbblue(machine_config &config)
35363536

35373537
SPECNEXT_COPPER(config, m_copper, 28_MHz_XTAL);
35383538
m_copper->out_nextreg_cb().set(FUNC(specnext_state::reg_w));
3539-
m_copper->set_in_until_pos_cb(FUNC(specnext_state::cooper_until_pos_r));
3539+
m_copper->set_in_until_pos_cb(FUNC(specnext_state::copper_until_pos_r));
35403540

35413541
config.device_remove("snapshot");
35423542
}

src/mame/sinclair/tsconf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ void tsconf_state::tsconf2(machine_config &config)
342342
tsconf(config);
343343
TSCONF_COPPER(config, m_copper, 28_MHz_XTAL);
344344
m_copper->out_wreg_cb().set(FUNC(tsconf_state::tsconf_port_xxaf_w));
345-
m_copper->set_in_until_pos_cb(FUNC(tsconf_state::cooper_until_pos_r));
345+
m_copper->set_in_until_pos_cb(FUNC(tsconf_state::copper_until_pos_r));
346346

347347
m_dma->on_ready_callback().append(m_copper, FUNC(tsconf_copper_device::dma_ready_w));
348348
}

src/mame/sinclair/tsconf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class tsconf_state : public spectrum_128_state
177177
void draw_sprites(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
178178
void tsconf_update_video_mode();
179179
void copy_tiles_to_raw(const u8 *tiles_src, u8 *raw_target);
180-
attotime cooper_until_pos_r(u16 pos);
180+
attotime copper_until_pos_r(u16 pos);
181181

182182
u8 tsconf_port_xx1f_r(offs_t offset);
183183
void tsconf_port_7ffd_w(u8 data);

src/mame/sinclair/tsconf_m.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ void tsconf_state::draw_sprites(screen_device &screen_d, bitmap_rgb32 &bitmap, c
359359

360360
}
361361

362-
attotime tsconf_state::cooper_until_pos_r(u16 pos)
362+
attotime tsconf_state::copper_until_pos_r(u16 pos)
363363
{
364364
const u8 mode = pos >> 14;
365365
switch(mode)

0 commit comments

Comments
 (0)