Skip to content

Commit 3f39be4

Browse files
committed
Cleanups and version bump.
1 parent fcb40f0 commit 3f39be4

14 files changed

Lines changed: 205 additions & 205 deletions

File tree

src/emu/sound/tms5220.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ device), PES Speech adapter (serial port connection)
231231
#undef DEBUG_GENERATION_VERBOSE
232232
// above dumps MUCH MORE debug information related to the sample generation loop, namely the k, pitch and energy values for EVERY SINGLE SAMPLE.
233233
#undef DEBUG_LATTICE
234-
// above dumps the lattice filter state data each sample.
234+
// above dumps the lattice filter state data each sample.
235235
#undef DEBUG_CLIP
236236
// above dumps info to stderr whenever the analog clip hardware is (or would be) clipping the signal.
237237
#undef DEBUG_IO_READY
@@ -907,7 +907,7 @@ static void tms5220_process(tms5220_state *tms, INT16 *buffer, unsigned int size
907907
case 3: /* PC=1, B cycle, nothing happens (update pitch) */
908908
break;
909909
case 4: /* PC=2, A cycle, update pitch (calc K1) */
910-
#ifndef INTERP_INHIBIT_EXCITE_DELAY
910+
#ifndef INTERP_INHIBIT_EXCITE_DELAY
911911
if (interp_period == 7) tms->old_frame_pitch_idx = tms->new_frame_pitch_idx; // this is to make it so the voiced/unvoiced select during interpolation takes effect at the same time as inhibit stops.
912912
#endif
913913
tms->current_pitch += (((tms->target_pitch - tms->current_pitch)*(1-tms->inhibit)) INTERP_SHIFT);

src/mame/drivers/cinemat.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1344,13 +1344,13 @@ ROM_END
13441344
ROM_START( spaceftr )
13451345
ROM_REGION( 0x2000, "maincpu", 0 )
13461346
ROM_LOAD16_BYTE( "fortrest7.7t", 0x0000, 0x0800, CRC(65d0a225) SHA1(e1fbee5ff42dd040ab2e90bbe2189fcb76d6167e) )
1347-
1347+
13481348
/* The original fortresp7.7p ROM image was a bad dump, a comparison showed only two bytes difference between it
1349-
and starcast.p7 from starcas1. A disassembly proved that the two affected bytes resulted in bogus opcodes, which
1350-
ultimately caused the game to fail. The current ROM taken from starcas1 can be assumed to be equal to a correct
1351-
dump of fortresp7.7p. The BAD_DUMP flag is kept in just to be sure. */
1349+
and starcast.p7 from starcas1. A disassembly proved that the two affected bytes resulted in bogus opcodes, which
1350+
ultimately caused the game to fail. The current ROM taken from starcas1 can be assumed to be equal to a correct
1351+
dump of fortresp7.7p. The BAD_DUMP flag is kept in just to be sure. */
13521352
ROM_LOAD16_BYTE( "fortresp7.7p", 0x0001, 0x0800, BAD_DUMP CRC(d8f58d9a) SHA1(abba459431dcacc75099b0d340b957be71b89cfd) ) // taken from starcas1, read note above
1353-
1353+
13541354
ROM_LOAD16_BYTE( "fortresu7.7u", 0x1000, 0x0800, CRC(13b0287c) SHA1(366a23fd10684975bd5ee190e5227e47a0298ad5) )
13551355
ROM_LOAD16_BYTE( "fortresr7.7r", 0x1001, 0x0800, CRC(a2c1ed52) SHA1(ed9743f44ee98c9e7c2a6819ec681af7c7a97fc9) )
13561356

src/mame/drivers/goldstar.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ static WRITE8_HANDLER( lucky8_outport_w )
370370
output_set_lamp_value(3, (data >> 4) & 1); /* INFO Lamp */
371371
output_set_lamp_value(4, (data >> 5) & 1); /* START Lamp */
372372

373-
// popmessage("lucky8_outb850_w %02x\n", data);
373+
// popmessage("lucky8_outb850_w %02x\n", data);
374374

375375
}
376376

src/mame/drivers/jack.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ static INPUT_PORTS_START( zzyzzyxx )
347347
PORT_DIPNAME( 0x10, 0x00, "Difficulty of Pleasing Lola" ) PORT_DIPLOCATION("SW2:!5")
348348
PORT_DIPSETTING( 0x00, DEF_STR( Easy ) )
349349
PORT_DIPSETTING( 0x10, DEF_STR( Hard ) )
350-
PORT_DIPNAME( 0x20, 0x00, "Show Intermissions" ) PORT_DIPLOCATION("SW2:!6")
350+
PORT_DIPNAME( 0x20, 0x00, "Show Intermissions" ) PORT_DIPLOCATION("SW2:!6")
351351
PORT_DIPSETTING( 0x00, DEF_STR( No ) )
352352
PORT_DIPSETTING( 0x20, DEF_STR( Yes ) )
353353
PORT_DIPNAME( 0xc0, 0x40, "Extra Lives" ) PORT_DIPLOCATION("SW2:!7,!8")
@@ -382,7 +382,7 @@ INPUT_PORTS_END
382382

383383
static INPUT_PORTS_START( freeze )
384384
PORT_START("DSW1")
385-
PORT_DIPNAME( 0x01, 0x00, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW1:!1")
385+
PORT_DIPNAME( 0x01, 0x00, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW1:!1")
386386
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
387387
PORT_DIPSETTING( 0x01, DEF_STR( On ) )
388388
PORT_SERVICE( 0x02, IP_ACTIVE_HIGH ) PORT_DIPLOCATION("SW1:!2")
@@ -392,7 +392,7 @@ static INPUT_PORTS_START( freeze )
392392
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW1:!4")
393393
PORT_DIPSETTING( 0x00, "3" )
394394
PORT_DIPSETTING( 0x08, "5" )
395-
PORT_DIPNAME( 0x30, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW1:!5,!6")
395+
PORT_DIPNAME( 0x30, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW1:!5,!6")
396396
PORT_DIPSETTING( 0x00, "10000" )
397397
PORT_DIPSETTING( 0x10, "10000 & Every 40000" )
398398
PORT_DIPSETTING( 0x20, "10000 & Every 60000" )
@@ -458,7 +458,7 @@ static INPUT_PORTS_START( sucasino )
458458
PORT_DIPNAME( 0x04, 0x00, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW1:!3")
459459
PORT_DIPSETTING( 0x00, DEF_STR( Upright ) )
460460
PORT_DIPSETTING( 0x04, DEF_STR( Cocktail ) )
461-
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW1:!4")
461+
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW1:!4")
462462
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
463463
PORT_DIPSETTING( 0x08, DEF_STR( On ) )
464464
PORT_DIPUNKNOWN_DIPLOC( 0x10, 0x00, "SW1:!5" ) // bit 5-8, Check code at 0xf700
@@ -698,7 +698,7 @@ static INPUT_PORTS_START( striv )
698698
PORT_DIPNAME( 0x08, 0x08, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW1:!4")
699699
PORT_DIPSETTING( 0x08, DEF_STR( Upright ) )
700700
PORT_DIPSETTING( 0x00, DEF_STR( Cocktail ) )
701-
PORT_DIPNAME( 0x10, 0x10, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:!5")
701+
PORT_DIPNAME( 0x10, 0x10, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:!5")
702702
PORT_DIPSETTING( 0x00, DEF_STR( 2C_1C ) )
703703
PORT_DIPSETTING( 0x10, DEF_STR( 1C_1C ) )
704704
PORT_DIPNAME( 0x20, 0x20, "Gaming Option" ) PORT_DIPLOCATION("SW1:!6")

src/mame/drivers/jollyjgr.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -530,9 +530,9 @@ static VIDEO_UPDATE( fspider )
530530
VIDEO_UPDATE_CALL(jollyjgr);
531531

532532
/* Draw bullets
533-
16 bytes, 2 bytes per bullet (y,x). 2 player bullets, 6 enemy bullets.
534-
Assume bullets to look the same as on Galaxian hw,
535-
that is, simply 4 pixels. Colours are unknown. */
533+
16 bytes, 2 bytes per bullet (y,x). 2 player bullets, 6 enemy bullets.
534+
Assume bullets to look the same as on Galaxian hw,
535+
that is, simply 4 pixels. Colours are unknown. */
536536
for (int offs=0;offs<0x10;offs+=2) {
537537
UINT8 sy=~state->bulletram[offs];
538538
UINT8 sx=~state->bulletram[offs|1];

src/mame/drivers/mcr68.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ static INPUT_PORTS_START( intlaser )
671671
PORT_BIT( 0x2000, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_PLAYER(4)
672672
PORT_BIT( 0x4000, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_8WAY PORT_PLAYER(4)
673673
PORT_BIT( 0x8000, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_PLAYER(4)
674-
674+
675675
PORT_START("DSW")
676676
PORT_DIPNAME( 0x0001, 0x0001, DEF_STR( Unknown ) )
677677
PORT_DIPSETTING( 0x0001, DEF_STR( Off ) )
@@ -1020,7 +1020,7 @@ static MACHINE_DRIVER_START( intlaser )
10201020
/* basic machine hardware */
10211021
MDRV_IMPORT_FROM(mcr68)
10221022
MDRV_IMPORT_FROM(sounds_good)
1023-
1023+
10241024
MDRV_WATCHDOG_VBLANK_INIT(800)
10251025
MACHINE_DRIVER_END
10261026

src/mame/drivers/namcops2.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ ROM_START( taiko10 )
202202
SYSTEM256_BIOS
203203

204204
ROM_REGION(0x840000, "key", ROMREGION_ERASE00)
205-
ROM_LOAD( "t101001-na-a.ic002", 0x000000, 0x800000, CRC(fa7f4c4d) SHA1(4f6b24243f2c2fdffadc7acaa3a6fb668e497606) )
206-
ROM_LOAD( "t101001-na-a_spr.ic002", 0x800000, 0x040000, CRC(0a2926c4) SHA1(fb3d23545b5f9a649c4a14b6424c606139723bd5) )
205+
ROM_LOAD( "t101001-na-a.ic002", 0x000000, 0x800000, CRC(fa7f4c4d) SHA1(4f6b24243f2c2fdffadc7acaa3a6fb668e497606) )
206+
ROM_LOAD( "t101001-na-a_spr.ic002", 0x800000, 0x040000, CRC(0a2926c4) SHA1(fb3d23545b5f9a649c4a14b6424c606139723bd5) )
207207

208208
DISK_REGION("dvd")
209209
DISK_IMAGE_READONLY( "tk10naa", 0, SHA1(9aef4a6b64295a6684d56334904b4c92a20abe15) )

0 commit comments

Comments
 (0)