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

« back to all changes in this revision

Viewing changes to src/mame/drivers/cardline.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:
24
24
 
25
25
static int cardline_video;
26
26
 
27
 
#define DRAW_TILE(offset, transparency) drawgfx(bitmap, screen->machine->gfx[0],\
 
27
#define DRAW_TILE(offset, transparency) drawgfx_transpen(bitmap, cliprect, screen->machine->gfx[0],\
28
28
                                        (videoram[index+offset] | (colorram[index+offset]<<8))&0x3fff,\
29
29
                                        (colorram[index+offset]&0x80)>>7,\
30
30
                                        0,0,\
31
31
                                        x<<3, y<<3,\
32
 
                                        cliprect,\
33
 
                                        transparency?TRANSPARENCY_PEN:TRANSPARENCY_NONE,transparency);
 
32
                                        transparency?transparency:-1);
34
33
 
35
34
static VIDEO_UPDATE( cardline )
36
35
{
235
234
        ROM_REGION( 0x10000, "maincpu", 0 )
236
235
        ROM_LOAD( "dns0401.u23",   0x0000, 0x10000, CRC(5bbaf5c1) SHA1(70972a744c5981b01a46799a7fd1b0a600489264) )
237
236
 
238
 
        ROM_REGION( 0x100000, "gfx1", ROMREGION_DISPOSE )
 
237
        ROM_REGION( 0x100000, "gfx1", 0 )
239
238
        ROM_LOAD16_BYTE( "u38cll01.u38",   0x000001, 0x80000, CRC(12f62496) SHA1(b89eaf09e76c5c42588bf9c8c23190347635cc83) )
240
239
        ROM_LOAD16_BYTE( "u39cll01.u39",   0x000000, 0x80000, CRC(fcfa703e) SHA1(9230ad9df02140f3a6c38b24558548a888b23412) )
241
240