~ubuntu-branches/debian/sid/mame/sid

« back to all changes in this revision

Viewing changes to src/mame/includes/paradise.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Emmanuel Kasper, Félix Arreola Rodríguez, Jordi Mallach
  • Date: 2011-05-11 21:06:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110511210650-jizvh8a6x117y9hr
Tags: 0.142-1
[ Emmanuel Kasper ]
* New upstream release
* Set NOWERROR=1 to allow compiling with gcc-4.6
* Remove fix_powerpc_build.patch, as upstream has taken it in this release
* Add gnome-video-arcade front end as a suggested package

[ Félix Arreola Rodríguez ]
* Add kfreebsd-build.patch to quilt series, to fix build on kfreebsd

[ Jordi Mallach ]
* Remove unneeded and bogus addition of --with-quilt to the dh invocation.
* Add Cesare Falco (long time Ubuntu maintainer) to Uploaders, and wrap
  them into multiple lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
                : driver_device(machine, config) { }
7
7
 
8
8
        /* memory pointers */
9
 
        UINT8 *  vram_0;
10
 
        UINT8 *  vram_1;
11
 
        UINT8 *  vram_2;
12
 
        UINT8 *  videoram;
13
 
        UINT8 *  paletteram;
14
 
        UINT8 *  spriteram;
15
 
        size_t   spriteram_size;
 
9
        UINT8 *  m_vram_0;
 
10
        UINT8 *  m_vram_1;
 
11
        UINT8 *  m_vram_2;
 
12
        UINT8 *  m_videoram;
 
13
        UINT8 *  m_paletteram;
 
14
        UINT8 *  m_spriteram;
 
15
        size_t   m_spriteram_size;
16
16
 
17
17
        /* video-related */
18
 
        tilemap_t *tilemap_0, *tilemap_1, *tilemap_2;
19
 
        bitmap_t *tmpbitmap;
20
 
        UINT8 palbank, priority;
21
 
        int sprite_inc;
 
18
        tilemap_t *m_tilemap_0;
 
19
        tilemap_t *m_tilemap_1;
 
20
        tilemap_t *m_tilemap_2;
 
21
        bitmap_t *m_tmpbitmap;
 
22
        UINT8 m_palbank;
 
23
        UINT8 m_priority;
 
24
        int m_sprite_inc;
22
25
};
23
26
 
24
27
/*----------- defined in video/paradise.c -----------*/
37
40
 
38
41
VIDEO_START( paradise );
39
42
 
40
 
VIDEO_UPDATE( paradise );
41
 
VIDEO_UPDATE( torus );
42
 
VIDEO_UPDATE( madball );
 
43
SCREEN_UPDATE( paradise );
 
44
SCREEN_UPDATE( torus );
 
45
SCREEN_UPDATE( madball );