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

« back to all changes in this revision

Viewing changes to src/mame/video/vulgus.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:
197
197
 
198
198
                do
199
199
                {
200
 
                        drawgfx(bitmap,machine->gfx[2],
 
200
                        drawgfx_transpen(bitmap,cliprect,machine->gfx[2],
201
201
                                        code + i,
202
202
                                        col,
203
203
                                        flip_screen_get(machine),flip_screen_get(machine),
204
 
                                        sx, sy + 16 * i * dir,
205
 
                                        cliprect,TRANSPARENCY_PEN,15);
 
204
                                        sx, sy + 16 * i * dir,15);
206
205
 
207
206
                        /* draw again with wraparound */
208
 
                        drawgfx(bitmap,machine->gfx[2],
 
207
                        drawgfx_transpen(bitmap,cliprect,machine->gfx[2],
209
208
                                        code + i,
210
209
                                        col,
211
210
                                        flip_screen_get(machine),flip_screen_get(machine),
212
 
                                        sx, sy + 16 * i * dir -  dir * 256,
213
 
                                        cliprect,TRANSPARENCY_PEN,15);
 
211
                                        sx, sy + 16 * i * dir -  dir * 256,15);
214
212
                        i--;
215
213
                } while (i >= 0);
216
214
        }