~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

Viewing changes to src/mame/drivers/crbaloon.c

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
        crbaloon_set_clear_collision_address((data & 0x01) ? TRUE : FALSE);
168
168
 
169
169
        /* D1 - SOUND STOP */
170
 
        sound_global_enable((data & 0x02) ? TRUE : FALSE);
 
170
        sound_global_enable(space->machine, (data & 0x02) ? TRUE : FALSE);
171
171
 
172
172
        /* D2 - unlabeled - music enable */
173
173
        crbaloon_audio_set_music_enable(discrete, 0, (data & 0x04) ? TRUE : FALSE);
406
406
        ROM_LOAD( "cl05.bin",     0x2000, 0x0800, CRC(c8f1e2be) SHA1(a4603ce0268fa987f7f780702b6ca04e28759674) )
407
407
        ROM_LOAD( "cl06.bin",     0x2800, 0x0800, CRC(7d465691) SHA1(f5dc7abe8db232f702419d126cee6607ea6a5168) )
408
408
 
409
 
        ROM_REGION( 0x0800, "gfx1", ROMREGION_DISPOSE )
 
409
        ROM_REGION( 0x0800, "gfx1", 0 )
410
410
        ROM_LOAD( "cl07.bin",     0x0000, 0x0800, CRC(2c1fbea8) SHA1(41cf2aef74d56173057886512d989f6fa3682056) )
411
411
 
412
412
        ROM_REGION( 0x0800, "gfx2", 0 )
414
414
ROM_END
415
415
 
416
416
 
417
 
ROM_START( crbalon2 )
 
417
ROM_START( crbaloon2 )
418
418
        ROM_REGION( 0x10000, "maincpu", 0 )
419
419
        ROM_LOAD( "cl01.bin",     0x0000, 0x0800, CRC(9d4eef0b) SHA1(a8dd814ac2612073982123c91fa62deaf5bee242) )
420
420
        ROM_LOAD( "crazybal.ep2", 0x0800, 0x0800, CRC(87572086) SHA1(dba842c7c4cb16154ae0da43d71f8f03a56441c3) )
423
423
        ROM_LOAD( "cl05.bin",     0x2000, 0x0800, CRC(c8f1e2be) SHA1(a4603ce0268fa987f7f780702b6ca04e28759674) )
424
424
        ROM_LOAD( "crazybal.ep6", 0x2800, 0x0800, CRC(fed6ff5c) SHA1(e6ed276949fd1511c6abe97026793193fda36e92) )
425
425
 
426
 
        ROM_REGION( 0x0800, "gfx1", ROMREGION_DISPOSE )
 
426
        ROM_REGION( 0x0800, "gfx1", 0 )
427
427
        ROM_LOAD( "cl07.bin",     0x0000, 0x0800, CRC(2c1fbea8) SHA1(41cf2aef74d56173057886512d989f6fa3682056) )
428
428
 
429
429
        ROM_REGION( 0x0800, "gfx2", 0 )
439
439
 *************************************/
440
440
 
441
441
GAME( 1980, crbaloon, 0,                crbaloon, crbaloon, 0, ROT90, "Taito Corporation", "Crazy Balloon (set 1)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
442
 
GAME( 1980, crbalon2, crbaloon, crbaloon, crbaloon, 0, ROT90, "Taito Corporation", "Crazy Balloon (set 2)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
 
442
GAME( 1980, crbaloon2,crbaloon, crbaloon, crbaloon, 0, ROT90, "Taito Corporation", "Crazy Balloon (set 2)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )