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

« back to all changes in this revision

Viewing changes to src/mame/video/quasar.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:
139
139
 
140
140
                /* Main Screen */
141
141
 
142
 
                drawgfx(bitmap,screen->machine->gfx[0],
 
142
                drawgfx_transpen(bitmap,cliprect,screen->machine->gfx[0],
143
143
                                code,
144
144
                                cvs_color_ram[offs] & 0x3f,
145
145
                                0,0,
146
 
                                x,y,
147
 
                                cliprect,TRANSPARENCY_PEN,0);
 
146
                                x,y,0);
148
147
 
149
148
 
150
149
                /* background for Collision Detection (it can only hit certain items) */
151
150
 
152
151
                if((cvs_color_ram[offs] & 7) == 0)
153
152
                {
154
 
                        drawgfx(cvs_collision_background,screen->machine->gfx[0],
 
153
                        drawgfx_opaque(cvs_collision_background,cliprect,screen->machine->gfx[0],
155
154
                                        code,
156
155
                                        64,
157
156
                                        0,0,
158
 
                                        x,y,
159
 
                                        cliprect,TRANSPARENCY_NONE,0);
 
157
                                        x,y);
160
158
                }
161
159
        }
162
160