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

« back to all changes in this revision

Viewing changes to src/mame/video/freekick.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:
55
55
                        flipy = !flipy;
56
56
                }
57
57
 
58
 
                drawgfx(bitmap,machine->gfx[1],
 
58
                drawgfx_transpen(bitmap,cliprect,machine->gfx[1],
59
59
                                code,
60
60
                                color,
61
61
                                flipx,flipy,
62
 
                                xpos,240-ypos,
63
 
                                cliprect,TRANSPARENCY_PEN,0);
 
62
                                xpos,240-ypos,0);
64
63
        }
65
64
}
66
65
 
90
89
                        flipy = !flipy;
91
90
                }
92
91
 
93
 
                drawgfx(bitmap,machine->gfx[1],
 
92
                drawgfx_transpen(bitmap,cliprect,machine->gfx[1],
94
93
                                code,
95
94
                                color,
96
95
                                flipx,flipy,
97
 
                                xpos,240-ypos,
98
 
                                cliprect,TRANSPARENCY_PEN,0);
 
96
                                xpos,240-ypos,0);
99
97
        }
100
98
}
101
99
 
126
124
                        flipy = !flipy;
127
125
                }
128
126
 
129
 
                drawgfx(bitmap,machine->gfx[1],
 
127
                drawgfx_transpen(bitmap,cliprect,machine->gfx[1],
130
128
                                code,
131
129
                                color,
132
130
                                flipx,flipy,
133
 
                                xpos,248-ypos,
134
 
                                cliprect,TRANSPARENCY_PEN,0);
 
131
                                xpos,248-ypos,0);
135
132
        }
136
133
}
137
134