~ubuntu-branches/ubuntu/precise/mame/precise-proposed

« back to all changes in this revision

Viewing changes to src/mame/video/qdrmfgp.c

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2010-08-01 23:18:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100801231831-9dj2qbsynutixsoe
Tags: 0.139-0ubuntu1
* New upstream release (LP: #612070)
* debian/contrib/manpages: removed, accepted upstream
* debian/patches/:
  - deprecated_gtk_macros: removed, fixed upstream
  - missing_newline.patch: removed, fixed upstream
  - typos.patch: removed, fixed upstream
* debian/rules: new variables SYMLEVEL and DUMPSYM
* mame-tools: ldplayer removed, possibly for good (FTBFS upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
VIDEO_START( qdrmfgp )
31
31
{
32
 
        running_device *k056832 = devtag_get_device(machine, "k056832");
 
32
        running_device *k056832 = machine->device("k056832");
33
33
 
34
34
        k056832_set_layer_association(k056832, 0);
35
35
 
41
41
 
42
42
VIDEO_START( qdrmfgp2 )
43
43
{
44
 
        running_device *k056832 = devtag_get_device(machine, "k056832");
 
44
        running_device *k056832 = machine->device("k056832");
45
45
 
46
46
        k056832_set_layer_association(k056832, 0);
47
47
 
59
59
 
60
60
VIDEO_UPDATE( qdrmfgp )
61
61
{
62
 
        running_device *k056832 = devtag_get_device(screen->machine, "k056832");
 
62
        running_device *k056832 = screen->machine->device("k056832");
63
63
        bitmap_fill(bitmap, cliprect, get_black_pen(screen->machine));
64
64
 
65
65
        k056832_tilemap_draw(k056832, bitmap, cliprect, 3, 0, 1);