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

« back to all changes in this revision

Viewing changes to src/mame/drivers/ddealer.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:
175
175
                                        UINT16 tile = (src[count]&0x0fff);
176
176
                                        UINT16 colr = (src[count]&0xf000)>>12;
177
177
                                        count++;
178
 
                                        drawgfx(bitmap,gfx,tile,colr,0,flipy,(x*16)-sx,(y*16)-sy,cliprect,TRANSPARENCY_PEN,15);
 
178
                                        drawgfx_transpen(bitmap,cliprect,gfx,tile,colr,0,flipy,(x*16)-sx,(y*16)-sy,15);
179
179
                                }
180
180
                        }
181
181
                        count = 0;
188
188
                                        UINT16 tile = (src[count]&0x0fff);
189
189
                                        UINT16 colr = (src[count]&0xf000)>>12;
190
190
                                        count++;
191
 
                                        drawgfx(bitmap,gfx,tile,colr,0,flipy,(x*16)-sx,(y*16)-sy,cliprect,TRANSPARENCY_PEN,15);
 
191
                                        drawgfx_transpen(bitmap,cliprect,gfx,tile,colr,0,flipy,(x*16)-sx,(y*16)-sy,15);
192
192
                                }
193
193
                        }
194
194
                }
207
207
                                        UINT16 tile = (src[count]&0x0fff);
208
208
                                        UINT16 colr = (src[count]&0xf000)>>12;
209
209
                                        count++;
210
 
                                        drawgfx(bitmap,gfx,tile,colr,flipy,flipy,(x*16)+sx,(y*16)+sy,cliprect,TRANSPARENCY_PEN,15);
 
210
                                        drawgfx_transpen(bitmap,cliprect,gfx,tile,colr,flipy,flipy,(x*16)+sx,(y*16)+sy,15);
211
211
                                }
212
212
                        }
213
213
                        count = 0;
220
220
                                        UINT16 tile = (src[count]&0x0fff);
221
221
                                        UINT16 colr = (src[count]&0xf000)>>12;
222
222
                                        count++;
223
 
                                        drawgfx(bitmap,gfx,tile,colr,flipy,flipy,(x*16)+sx,(y*16)+sy,cliprect,TRANSPARENCY_PEN,15);
 
223
                                        drawgfx_transpen(bitmap,cliprect,gfx,tile,colr,flipy,flipy,(x*16)+sx,(y*16)+sy,15);
224
224
                                }
225
225
                        }
226
226
                }