summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/devices/bus/isa/s3virge.cpp2
-rw-r--r--src/devices/cpu/pic16c5x/pic16c5x.cpp2
-rw-r--r--src/devices/video/pc_vga.h4
-rw-r--r--src/lib/formats/fs_hplif.cpp39
-rw-r--r--src/mame/apple/apple2video.cpp2
-rw-r--r--src/mame/barcrest/mpu3.cpp2
-rw-r--r--src/mame/dataeast/astrof.cpp2
-rw-r--r--src/mame/dec/dtc03.cpp6
-rw-r--r--src/mame/force/fccpu30.cpp4
-rw-r--r--src/mame/jaleco/cischeat.cpp8
-rw-r--r--src/mame/luxor/abc1600.cpp2
-rw-r--r--src/mame/luxor/abc1600mac.cpp2
-rw-r--r--src/mame/misc/fresh.cpp2
-rw-r--r--src/mame/misc/magic10.cpp12
-rw-r--r--src/mame/misc/megaphx.cpp2
-rw-r--r--src/mame/misc/playcenter.cpp2
-rw-r--r--src/mame/misc/rawthrillspc.cpp6
-rw-r--r--src/mame/sfrj/idpartner.cpp34
-rw-r--r--src/mame/skeleton/e100.cpp2
-rw-r--r--src/mame/skeleton/tnshc08.cpp46
-rw-r--r--src/mame/vsystem/f1gp.cpp4
-rw-r--r--src/osd/modules/debugger/debugimgui.cpp2
22 files changed, 94 insertions, 93 deletions
diff --git a/src/devices/bus/isa/s3virge.cpp b/src/devices/bus/isa/s3virge.cpp
index 4140f09df10..aa41b8d0ce9 100644
--- a/src/devices/bus/isa/s3virge.cpp
+++ b/src/devices/bus/isa/s3virge.cpp
@@ -1424,7 +1424,7 @@ void s3virge_vga_device::bitblt_monosrc_step()
dst = read_pixel16(dst_base,s3virge.s3d.bitblt_x_current,s3virge.s3d.bitblt_y_current, dest_stride());
if (de)
- {
+ {
if(src & (1 << x))
write_pixel16(dst_base,s3virge.s3d.bitblt_x_current,s3virge.s3d.bitblt_y_current,GetROP(rop, s3virge.s3d.cmd_fifo[s3virge.s3d.cmd_fifo_current_ptr].reg[S3D_REG_SRC_FG_CLR], dst, pat) & 0xffff);
else if(!(current_command & 0x200)) // only draw background colour if transparency is not set
diff --git a/src/devices/cpu/pic16c5x/pic16c5x.cpp b/src/devices/cpu/pic16c5x/pic16c5x.cpp
index 05aa42eca34..ba2145e9a8b 100644
--- a/src/devices/cpu/pic16c5x/pic16c5x.cpp
+++ b/src/devices/cpu/pic16c5x/pic16c5x.cpp
@@ -278,7 +278,7 @@ void pic16c5x_device::update_internalram_ptr()
// ******** The following is the Config Flag register definition. ********
// | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
// | CP | WDTE | FOSC |
- // CP Code Protect (ROM read protect)
+ // CP Code Protect (ROM read protect)
#define WDTE_FLAG 0x04 // WDTE WatchDog Timer enable
#define FOSC_FLAG 0x03 // FOSC Oscillator source select
diff --git a/src/devices/video/pc_vga.h b/src/devices/video/pc_vga.h
index cde088a8b8d..233b824cae6 100644
--- a/src/devices/video/pc_vga.h
+++ b/src/devices/video/pc_vga.h
@@ -689,8 +689,8 @@ public:
virtual void port_03c0_w(offs_t offset, uint8_t data) override;
virtual uint8_t port_03d0_r(offs_t offset) override;
virtual void port_03d0_w(offs_t offset, uint8_t data) override;
-// virtual uint8_t mem_r(offs_t offset) override;
-// virtual void mem_w(offs_t offset, uint8_t data) override;
+// virtual uint8_t mem_r(offs_t offset) override;
+// virtual void mem_w(offs_t offset, uint8_t data) override;
virtual uint8_t mem_linear_r(offs_t offset) override;
virtual void mem_linear_w(offs_t offset,uint8_t data) override;
diff --git a/src/lib/formats/fs_hplif.cpp b/src/lib/formats/fs_hplif.cpp
index 018c4ba5e21..9f048600cc7 100644
--- a/src/lib/formats/fs_hplif.cpp
+++ b/src/lib/formats/fs_hplif.cpp
@@ -41,13 +41,13 @@ public:
struct hplif_dirent
{
- char m_file_name[10];
- u16 m_file_type;
- u32 m_starting_sector;
- u32 m_sector_count;
- hplif_time m_time;
- u16 m_volume_number;
- u32 m_general_purpose;
+ char m_file_name[10];
+ u16 m_file_type;
+ u32 m_starting_sector;
+ u32 m_sector_count;
+ hplif_time m_time;
+ u16 m_volume_number;
+ u32 m_general_purpose;
};
class block_iterator
@@ -60,10 +60,10 @@ public:
u8 size() const;
private:
- const impl & m_fs;
- fsblk_t::block_t m_block;
- u8 m_sector;
- u32 m_sector_count;
+ const impl & m_fs;
+ fsblk_t::block_t m_block;
+ u8 m_sector;
+ u32 m_sector_count;
};
impl(fsblk_t &blockdev);
@@ -303,9 +303,10 @@ std::pair<err_t, std::vector<u8>> impl::file_read(const std::vector<std::string>
u32 sector_count = big_endianize_int32(dirent->m_sector_count);
hplif_dirent hdr = dirent.value();
std::vector<u8> result;
- result.insert(result.end(),
- reinterpret_cast<const u8 *>(&hdr),
- reinterpret_cast<const u8 *>(&hdr) + 32);
+ result.insert(
+ result.end(),
+ reinterpret_cast<const u8 *>(&hdr),
+ reinterpret_cast<const u8 *>(&hdr) + 32);
result.reserve(sector_count * 256 + 32);
block_iterator iter(*this, big_endianize_int32(dirent->m_starting_sector), sector_count);
while (iter.next())
@@ -473,12 +474,12 @@ err_t impl::format(const meta_data &meta)
if (volume_name.size() > 6)
volume_name.resize(6);
- block.w16b(0, 0x8000); // LIF magic
+ block.w16b(0, 0x8000); // LIF magic
block.wstr(2, volume_name);
- block.w32b(8, 2); // directory start
- block.w16b(12, 0x1000); // LIF identifier
- block.w32b(16, 14); // directory size
- block.w16b(20, 1); // LIF version
+ block.w32b(8, 2); // directory start
+ block.w16b(12, 0x1000); // LIF identifier
+ block.w32b(16, 14); // directory size
+ block.w16b(20, 1); // LIF version
return ERR_OK;
}
diff --git a/src/mame/apple/apple2video.cpp b/src/mame/apple/apple2video.cpp
index 33bfac400fd..9f01047ee74 100644
--- a/src/mame/apple/apple2video.cpp
+++ b/src/mame/apple/apple2video.cpp
@@ -520,7 +520,7 @@ void a2_video_device::text_update(screen_device &screen, bitmap_ind16 &bitmap, c
if (is_80_column)
{
words[col] = get_text_character<Model, Invert, Flip>(aux_page[aux_address + col], row & 7)
- + (get_text_character<Model, Invert, Flip>(m_ram_ptr[address + col], row & 7) << 7);
+ + (get_text_character<Model, Invert, Flip>(m_ram_ptr[address + col], row & 7) << 7);
}
else
{
diff --git a/src/mame/barcrest/mpu3.cpp b/src/mame/barcrest/mpu3.cpp
index fe732a3ee82..98a3f62ee62 100644
--- a/src/mame/barcrest/mpu3.cpp
+++ b/src/mame/barcrest/mpu3.cpp
@@ -170,7 +170,7 @@ TODO: - Distinguish door switches using manual
#define LOG(x) do { if (MPU3VERBOSE) logerror x; } while (0)
-
+
namespace {
class mpu3_state : public driver_device
diff --git a/src/mame/dataeast/astrof.cpp b/src/mame/dataeast/astrof.cpp
index 54083ace6ad..17aab1ad4cf 100644
--- a/src/mame/dataeast/astrof.cpp
+++ b/src/mame/dataeast/astrof.cpp
@@ -48,7 +48,7 @@
Known issues/to-do's:
* Analog sound in all games
* satsf3d color prom is not dumped, using the one from spfghmk2 instead
- (it looks good compared to photo)
+ (it looks good compared to photo)
About Colours:
* It was fairly common to have wiremods on these PCBs to change the
diff --git a/src/mame/dec/dtc03.cpp b/src/mame/dec/dtc03.cpp
index b6798059a4d..87796ee979c 100644
--- a/src/mame/dec/dtc03.cpp
+++ b/src/mame/dec/dtc03.cpp
@@ -129,7 +129,7 @@ READ_LINE_MEMBER(dtc03_state::bio_line_r)
{
// TODO: reading the bio line doesn't cause any direct external effects so this is wrong
//if(m_bio == ASSERT_LINE)
- // m_maincpu->drq0_w(1);
+ // m_maincpu->drq0_w(1);
return m_bio;
}
@@ -164,7 +164,7 @@ void dtc03_state::ctl_w(u16 data)
WRITE_LINE_MEMBER(dtc03_state::dsp_clock_w)
{
- /*
+#if 0
if (((m_ctl&0x2000) && state))
{
attotime dbgtime = (machine().time() - m_dbgclk);
@@ -175,7 +175,7 @@ WRITE_LINE_MEMBER(dtc03_state::dsp_clock_w)
{
logerror("dsp clock cleared\n");
}
- */
+#endif
//m_dsp->set_input_line(INPUT_LINE_IRQ0, (!(m_ctl & 0x2000) || state) ? CLEAR_LINE : ASSERT_LINE);
m_dsp->set_input_line(INPUT_LINE_IRQ0, ((m_ctl&0x2000) && state) ? ASSERT_LINE : CLEAR_LINE);
//m_dsp->set_input_line(0, ((m_ctl&0x2000) && state) ? ASSERT_LINE : CLEAR_LINE)); // TMS32010 INT
diff --git a/src/mame/force/fccpu30.cpp b/src/mame/force/fccpu30.cpp
index bae294d0a72..3b2968ff359 100644
--- a/src/mame/force/fccpu30.cpp
+++ b/src/mame/force/fccpu30.cpp
@@ -1043,8 +1043,8 @@ void fga002_device::check_interrupts()()
*/
} // anonymous namespace
-
-
+
+
/* Driver */
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS */
COMP( 1988, fccpu30, 0, 0, cpu30, cpu30, cpu30_state, empty_init, "Force Computers GmbH", "SYS68K/CPU-30", MACHINE_NOT_WORKING | MACHINE_NO_SOUND_HW )
diff --git a/src/mame/jaleco/cischeat.cpp b/src/mame/jaleco/cischeat.cpp
index 60101b8444b..8346854abda 100644
--- a/src/mame/jaleco/cischeat.cpp
+++ b/src/mame/jaleco/cischeat.cpp
@@ -4030,13 +4030,13 @@ void captflag_state::init_captflag()
/***************************************************************************
Vs. Super Captain Flag
-
+
PCB IDs:
CF-93153 EB93041-20091
-
+
CF-92128B EB92027-20060
-
+
GP-9189 EB90015-20038
**************************************************************************/
@@ -4094,7 +4094,7 @@ ROM_END
void captflag_state::init_vscaptfl()
{
address_space &space = m_maincpu->space(AS_PROGRAM);
-
+
space.unmap_readwrite(0x100044, 0x100045);
space.unmap_readwrite(0x100048, 0x100049);
diff --git a/src/mame/luxor/abc1600.cpp b/src/mame/luxor/abc1600.cpp
index d43dadb7170..02ea809834d 100644
--- a/src/mame/luxor/abc1600.cpp
+++ b/src/mame/luxor/abc1600.cpp
@@ -28,7 +28,7 @@
<enter>
<enter>
- ABCenix <= D-NIX <= AT&T Unix System V
+ ABCenix <= D-NIX <= AT&T Unix System V
*/
diff --git a/src/mame/luxor/abc1600mac.cpp b/src/mame/luxor/abc1600mac.cpp
index aa3f9b1d5a8..215c65b5f7c 100644
--- a/src/mame/luxor/abc1600mac.cpp
+++ b/src/mame/luxor/abc1600mac.cpp
@@ -11,7 +11,7 @@
[:mac] ':3f' (08058) BUS ERROR R fefe4:0007e4 (NONX 1 WP 0 TASK 3 FC 1 MAGIC 1)
[:mac] TASK 3 SEGMENT 31 PAGE 13 MEM fe800-fefff 000000-0007ff X W[:mac] 000000-0007ff X W
-[:mac] TASK 3 SEGMENT 31 PAGE 15 MEM ff800-fffff 07d800-07dfff [:mac] 07d800-07dfff
+[:mac] TASK 3 SEGMENT 31 PAGE 15 MEM ff800-fffff 07d800-07dfff [:mac] 07d800-07dfff
*/
#include "emu.h"
diff --git a/src/mame/misc/fresh.cpp b/src/mame/misc/fresh.cpp
index af947aff5c9..c62093301f3 100644
--- a/src/mame/misc/fresh.cpp
+++ b/src/mame/misc/fresh.cpp
@@ -32,7 +32,7 @@ rom 5 and 6 are prg roms
namespace {
-
+
class fresh_state : public driver_device
{
public:
diff --git a/src/mame/misc/magic10.cpp b/src/mame/misc/magic10.cpp
index e809488998b..08200341837 100644
--- a/src/mame/misc/magic10.cpp
+++ b/src/mame/misc/magic10.cpp
@@ -110,7 +110,7 @@
5. Change FREE PLAY to YES
6. Press and hold HOLD3, HOLD5 and START until the horizontal scrolling line stops scrolling.
7. Press HOLD4, HOLD5 and START together and release to enter hidden menu.
-
+
Note that ticket payout won't work with the current ticket driver.
*****************************************************************************
@@ -147,11 +147,11 @@ Both setups show different variants for components layout, memory size, NVRAM, e
but fixing these causes the poker winplan to be in the wrong place.
- Super Petrix and Super Gran Safari use the same board but spetrix accesses the sound
chip on the upper byte of the data bus and sgsafari on the lower. Is this just
- a programming error on spetrix ?
+ a programming error on spetrix ?
- Super Petrix attract mode consists of interleaved blue and gold blocks with the
blue scrolling diagonally. The blocks are out of alignment which is caused by
- update_screen doing m_tilemap[1]->set_scrollx(0, (m_vregs[2 / 2] - m_vregs[6 / 2]) + 4)
- Removing the +4 fixes the problem but does it cause other issues ?
+ update_screen doing m_tilemap[1]->set_scrollx(0, (m_vregs[2 / 2] - m_vregs[6 / 2]) + 4)
+ Removing the +4 fixes the problem but does it cause other issues ?
****************************************************************************/
@@ -1622,8 +1622,8 @@ ROM_START( sgsafari )
ROM_END
/*
- Super Petrix - Tetris type game.
- Unknown manufacturer.
+ Super Petrix - Tetris type game.
+ Unknown manufacturer.
*/
ROM_START( spetrix ) // same PCB as sgsafari but with a M48Z08 instead of a M48Z02
ROM_REGION( 0x40000, "maincpu", 0 ) // 68000 code
diff --git a/src/mame/misc/megaphx.cpp b/src/mame/misc/megaphx.cpp
index 54424da979b..9404a4b494e 100644
--- a/src/mame/misc/megaphx.cpp
+++ b/src/mame/misc/megaphx.cpp
@@ -67,7 +67,7 @@ Sub / Sound board:
(this sticker is also present on the other PCB)
PCB configuration for YoYo Spell:
-
+
Inder 60808
____________________________________________________________________________
| _______________ _______________ _______________ _______________ |
diff --git a/src/mame/misc/playcenter.cpp b/src/mame/misc/playcenter.cpp
index cedf38f273a..52b7f924bbd 100644
--- a/src/mame/misc/playcenter.cpp
+++ b/src/mame/misc/playcenter.cpp
@@ -5,7 +5,7 @@
Skeleton driver for "PlayCenter" PC-based touch games
"PlayCenter Champions Tournament":
- The machine was sold with three different hardware configurations (internally named "Epox",
+ The machine was sold with three different hardware configurations (internally named "Epox",
"K6" and "Celeron"), having each one its own "official" recovery image (Norton Ghost images).
"Epox" version:
-EPoX EP-MVP4F motherboard (Socket 7 with VIA Apollo MVP4 AGP, built-in Trident AGP,
diff --git a/src/mame/misc/rawthrillspc.cpp b/src/mame/misc/rawthrillspc.cpp
index 614be336de2..186deebd772 100644
--- a/src/mame/misc/rawthrillspc.cpp
+++ b/src/mame/misc/rawthrillspc.cpp
@@ -136,9 +136,9 @@ ROM_START( doodlejmp )
DISK_IMAGE( "doodlejmp", 0, NO_DUMP )
/* Recovery DVD:
- -Doodle Jump 1.16
- -OS 00.07
- -8-Feb-2013 */
+ -Doodle Jump 1.16
+ -OS 00.07
+ -8-Feb-2013 */
DISK_REGION( "recovery116" )
DISK_IMAGE_READONLY( "doodlejump_recover_dvd_1_16", 0, SHA1(67f2bc3d9d71fc924f8f784e62eaf3dd39c88f45) )
ROM_END
diff --git a/src/mame/sfrj/idpartner.cpp b/src/mame/sfrj/idpartner.cpp
index 3f8c5e0b9d8..bd50ff31c68 100644
--- a/src/mame/sfrj/idpartner.cpp
+++ b/src/mame/sfrj/idpartner.cpp
@@ -2,18 +2,18 @@
// copyright-holders:Miodrag Milanovic
/******************************************************************************
- Iskra Delta produced:
- 1984 - Partner series
- model with Winchester disk + floppy
- model with 2 floppy disks
- 1987 - Partner G series
- 1F/G - model with 1 floppy disk
- 2F/G - model with 2 floppy disks
- WF/G - model with Winchester disk + floppy
-
- Schematics and info at :
- https://github.com/tstih/idp-doc/tree/main/iskra-delta
- http://matejhorvat.si/sl/slorac/delta/partner/index.htm
+ Iskra Delta produced:
+ 1984 - Partner series
+ model with Winchester disk + floppy
+ model with 2 floppy disks
+ 1987 - Partner G series
+ 1F/G - model with 1 floppy disk
+ 2F/G - model with 2 floppy disks
+ WF/G - model with Winchester disk + floppy
+
+ Schematics and info at :
+ https://github.com/tstih/idp-doc/tree/main/iskra-delta
+ http://matejhorvat.si/sl/slorac/delta/partner/index.htm
*******************************************************************************/
@@ -177,10 +177,10 @@ void idpartner_state::io_map(address_map &map)
map(0x88,0x8f).rw(FUNC(idpartner_state::bank1_r), FUNC(idpartner_state::bank1_w)); // RAM bank 1
map(0x90,0x97).rw(FUNC(idpartner_state::bank2_r), FUNC(idpartner_state::bank2_w)); // RAM bank 2
//map(0x98,0x9f) // floppy motors
- //map(0xa0,0xa7) //
- //map(0xa8,0xaf) //
+ //map(0xa0,0xa7) //
+ //map(0xa8,0xaf) //
//map(0xb0,0xb7) // RTC - mm58167
- //map(0xb8,0xbf) //
+ //map(0xb8,0xbf) //
//map(0xc0,0xc7) // DMA
map(0xc8,0xcb).mirror(0x04).rw("ctc", FUNC(z80ctc_device::read), FUNC(z80ctc_device::write)); // CTC - A2 not connected
//map(0xd0,0xd7) // PIO - A2 not connected
@@ -188,7 +188,7 @@ void idpartner_state::io_map(address_map &map)
map(0xe0,0xe3).mirror(0x04).rw("sio2", FUNC(z80sio_device::ba_cd_r), FUNC(z80sio_device::ba_cd_w)); // SIO2 - A2 not connected
map(0xe8,0xef).w(FUNC(idpartner_state::fdc_vector_w)); // FDC interrupt vector
map(0xf0,0xf1).mirror(0x06).m(m_fdc, FUNC(i8272a_device::map));
- //map(0xf8,0xff) //
+ //map(0xf8,0xff) //
}
/* Input ports */
@@ -222,7 +222,7 @@ void idpartner_state::write_f1_clock(int state)
m_sio1->txcb_w(state);
m_sio1->rxcb_w(state);
-
+
m_sio2->txca_w(state);
m_sio2->rxca_w(state);
diff --git a/src/mame/skeleton/e100.cpp b/src/mame/skeleton/e100.cpp
index 869b4a06970..1c4d4a1b601 100644
--- a/src/mame/skeleton/e100.cpp
+++ b/src/mame/skeleton/e100.cpp
@@ -128,7 +128,7 @@
* Both rev1 and rev2 has a matrix keyboard PCB with a 74LS145 connected to J402 (PIA2)
*/
-
+
namespace {
/* Esselte 100 driver class */
diff --git a/src/mame/skeleton/tnshc08.cpp b/src/mame/skeleton/tnshc08.cpp
index ad1c94c3be1..ff9514a159e 100644
--- a/src/mame/skeleton/tnshc08.cpp
+++ b/src/mame/skeleton/tnshc08.cpp
@@ -2,29 +2,29 @@
// copyright-holders:Miodrag Milanovic
/***************************************************************************
- http://www.sapi.cz/tns/hc08.php
-
- IC104 - address decoder
- /A5, /A3, /A3, /A2
- 0 0 0 0 CS0 - not connected
- 0 0 0 1 CS1 - SLOT 1/2
- 0 0 1 0 CS2 - SLOT 1/2
- 0 0 1 1 CS3 - not connected
- 0 1 0 0 CS4 - 7474 clear (IC61)
- 0 1 0 1 CS5 - 8255 (IC90) and 7474 clear (IC61)
- 0 1 1 0 CS6 - 7474 preset (IC81)
- 0 1 1 1 CS7 - mod on 7495 (IC62)
- 1 0 0 0 CS8 - 7474 (IC77)
- 1 0 0 1 CS9 - SLOT 1/2
- 1 0 1 0 CS10 - SLOT 1/2
- 1 0 1 1 CS11 - 8255 (IC89) and 74154 (IC111)
- 1 1 0 0 CS12 - SIO (IC86)
- 1 1 0 1 CS13 - PIO (IC51)
- 1 1 1 0 CS14 - CTC (IC87)
- 1 1 1 1 CS15 - CTC (IC88)
-
- 8 x 4164 64K
- 8 x 41256 256K
+ http://www.sapi.cz/tns/hc08.php
+
+ IC104 - address decoder
+ /A5, /A3, /A3, /A2
+ 0 0 0 0 CS0 - not connected
+ 0 0 0 1 CS1 - SLOT 1/2
+ 0 0 1 0 CS2 - SLOT 1/2
+ 0 0 1 1 CS3 - not connected
+ 0 1 0 0 CS4 - 7474 clear (IC61)
+ 0 1 0 1 CS5 - 8255 (IC90) and 7474 clear (IC61)
+ 0 1 1 0 CS6 - 7474 preset (IC81)
+ 0 1 1 1 CS7 - mod on 7495 (IC62)
+ 1 0 0 0 CS8 - 7474 (IC77)
+ 1 0 0 1 CS9 - SLOT 1/2
+ 1 0 1 0 CS10 - SLOT 1/2
+ 1 0 1 1 CS11 - 8255 (IC89) and 74154 (IC111)
+ 1 1 0 0 CS12 - SIO (IC86)
+ 1 1 0 1 CS13 - PIO (IC51)
+ 1 1 1 0 CS14 - CTC (IC87)
+ 1 1 1 1 CS15 - CTC (IC88)
+
+ 8 x 4164 64K
+ 8 x 41256 256K
****************************************************************************/
diff --git a/src/mame/vsystem/f1gp.cpp b/src/mame/vsystem/f1gp.cpp
index 35592873dc0..115a078adf0 100644
--- a/src/mame/vsystem/f1gp.cpp
+++ b/src/mame/vsystem/f1gp.cpp
@@ -13,8 +13,8 @@
TODO:
- Hook up link for Multi Player game mode. Currently they boot with
- link set to multiple, but the ID changes every boot (and will black
- out if a multiplayer game is started).
+ link set to multiple, but the ID changes every boot (and will black
+ out if a multiplayer game is started).
f1gp:
- gfxctrl register not understood - handling of fg/sprite priority to fix
diff --git a/src/osd/modules/debugger/debugimgui.cpp b/src/osd/modules/debugger/debugimgui.cpp
index 81570fd0bcf..2368352c6f3 100644
--- a/src/osd/modules/debugger/debugimgui.cpp
+++ b/src/osd/modules/debugger/debugimgui.cpp
@@ -1493,7 +1493,7 @@ void debug_imgui::init_debugger(running_machine &machine)
m_mapping[ITEM_ID_LEFT] = ImGuiKey_LeftArrow;
m_mapping[ITEM_ID_RIGHT] = ImGuiKey_RightArrow;
m_mapping[ITEM_ID_UP] = ImGuiKey_UpArrow;
- m_mapping[ITEM_ID_DOWN] = ImGuiKey_DownArrow;
+ m_mapping[ITEM_ID_DOWN] = ImGuiKey_DownArrow;
m_mapping[ITEM_ID_F3] = ImGuiKey_F3;
m_mapping[ITEM_ID_F5] = ImGuiKey_F5;
m_mapping[ITEM_ID_F6] = ImGuiKey_F6;