From db8707f6cb2c1b8e467c5850151e00e1ff85ae63 Mon Sep 17 00:00:00 2001 From: amameuser <64736148+amameuser@users.noreply.github.com> Date: Tue, 13 Feb 2024 00:17:25 +0000 Subject: Fix some END macro indents (#12030) * bus/electron/plus1.cpp: Fix ROM_END macro indent * nintendo/n8080.cpp: Fix ROM_END macro indent * misc/rfslots8085.cpp: Fix INPUT_PORTS_END macro indent * tiger/gamecom.cpp: Fix INPUT_PORTS_END macro indent --- src/devices/bus/electron/plus1.cpp | 2 +- src/mame/misc/rfslots8085.cpp | 2 +- src/mame/nintendo/n8080.cpp | 4 ++-- src/mame/tiger/gamecom.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/devices/bus/electron/plus1.cpp b/src/devices/bus/electron/plus1.cpp index ee507f8c963..349dcf9e5c7 100644 --- a/src/devices/bus/electron/plus1.cpp +++ b/src/devices/bus/electron/plus1.cpp @@ -65,7 +65,7 @@ ROM_START( ap6 ) ROM_SYSTEM_BIOS(1, "ap6", "RH Plus 1 1.33") ROMX_LOAD("ap6v133t.rom", 0x0000, 0x4000, CRC(364591eb) SHA1(316a25aeeda0266dae510eea52324b087875740f), ROM_BIOS(1)) - ROM_END +ROM_END //------------------------------------------------- // INPUT_PORTS( plus1 ) diff --git a/src/mame/misc/rfslots8085.cpp b/src/mame/misc/rfslots8085.cpp index 75b3cafb1d3..217d41c9ea6 100644 --- a/src/mame/misc/rfslots8085.cpp +++ b/src/mame/misc/rfslots8085.cpp @@ -800,7 +800,7 @@ static INPUT_PORTS_START(rf53_3297) PORT_DIPNAME(0x20, 0x20, DEF_STR(Unknown)) PORT_DIPLOCATION("DSW:6") PORT_DIPSETTING(0x00, DEF_STR(On)) PORT_DIPSETTING(0x20, DEF_STR(Off)) - INPUT_PORTS_END +INPUT_PORTS_END /********************************************* diff --git a/src/mame/nintendo/n8080.cpp b/src/mame/nintendo/n8080.cpp index 098fb54abd0..3fbd7a95053 100644 --- a/src/mame/nintendo/n8080.cpp +++ b/src/mame/nintendo/n8080.cpp @@ -1259,7 +1259,7 @@ ROM_START( spacefev ) ROM_REGION( 0x0020, "proms", 0 ) // for color video hw ROM_LOAD( "f5-i-.bin", 0x0000, 0x0020, CRC(c5914ec1) SHA1(198875fcab36d09c8726bb21e2fdff9882f6721a) ) // "F5?C" - ROM_END +ROM_END ROM_START( spacefevo ) ROM_REGION( 0x8000, "maincpu", 0 ) @@ -1276,7 +1276,7 @@ ROM_START( spacefevo ) ROM_REGION( 0x0020, "proms", 0 ) // for color video hw ROM_LOAD( "f5-i-.bin", 0x0000, 0x0020, CRC(c5914ec1) SHA1(198875fcab36d09c8726bb21e2fdff9882f6721a) ) // "F5?C" - ROM_END +ROM_END ROM_START( spacefevo2 ) ROM_REGION( 0x8000, "maincpu", 0 ) diff --git a/src/mame/tiger/gamecom.cpp b/src/mame/tiger/gamecom.cpp index 1ee22366710..9acabf15464 100644 --- a/src/mame/tiger/gamecom.cpp +++ b/src/mame/tiger/gamecom.cpp @@ -230,7 +230,7 @@ static INPUT_PORTS_START( gamecom ) PORT_BIT( 0x080, IP_ACTIVE_HIGH, IPT_OTHER) PORT_BIT( 0x100, IP_ACTIVE_HIGH, IPT_OTHER) PORT_BIT( 0x200, IP_ACTIVE_HIGH, IPT_OTHER) - INPUT_PORTS_END +INPUT_PORTS_END void gamecom_state::gamecom_palette(palette_device &palette) const { -- cgit v1.2.3