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

« back to all changes in this revision

Viewing changes to src/mame/drivers/skyarmy.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:
118
118
                sy = 242-spriteram[offs];
119
119
                flipy = (spriteram[offs+1]&0x80)>>7;
120
120
                flipx = (spriteram[offs+1]&0x40)>>6;
121
 
                drawgfx(bitmap,screen->machine->gfx[1],
 
121
                drawgfx_transpen(bitmap,cliprect,screen->machine->gfx[1],
122
122
                spriteram[offs+1]&0x3f,
123
123
                pal,
124
124
                flipx,flipy,
125
 
                sx,sy,
126
 
                cliprect,TRANSPARENCY_PEN,0);
 
125
                sx,sy,0);
127
126
        }
128
127
        return 0;
129
128
}
271
270
        ROM_LOAD( "a3h.bin", 0x4000, 0x2000, CRC(95485e56) SHA1(c4cbcd31ba68769d2d0d0875e2a92982265339ae) )
272
271
        ROM_LOAD( "j4.bin",  0x6000, 0x2000, CRC(843783df) SHA1(256d8375a8af7de080d456dbc6290a22473d011b) )
273
272
 
274
 
        ROM_REGION( 0x1000, "gfx1", ROMREGION_DISPOSE )
 
273
        ROM_REGION( 0x1000, "gfx1", 0 )
275
274
        ROM_LOAD( "13b.bin", 0x0000, 0x0800, CRC(3b0e0f7c) SHA1(2bbba10121d3e745146f50c14dc6df97de40fb96) )
276
275
        ROM_LOAD( "15b.bin", 0x0800, 0x0800, CRC(5ccfd782) SHA1(408406ae068e5578b8a742abed1c37dcd3720fe5) )
277
276
 
278
 
        ROM_REGION( 0x1000, "gfx2", ROMREGION_DISPOSE )
 
277
        ROM_REGION( 0x1000, "gfx2", 0 )
279
278
        ROM_LOAD( "8b.bin",  0x0000, 0x0800, CRC(6ac6bd98) SHA1(e653d80ec1b0f8e07821ea781942dae3de7d238d) )
280
279
        ROM_LOAD( "10b.bin", 0x0800, 0x0800, CRC(cada7682) SHA1(83ce8336274cb8006a445ac17a179d9ffd4d6809) )
281
280