~ubuntu-branches/debian/wheezy/mame/wheezy

« back to all changes in this revision

Viewing changes to src/mame/includes/carjmbre.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:
11
11
                : driver_device(machine, config) { }
12
12
 
13
13
        /* memory pointers */
14
 
        UINT8 * videoram;
15
 
        UINT8 * spriteram;
16
 
        size_t  spriteram_size;
 
14
        UINT8 * m_videoram;
 
15
        UINT8 * m_spriteram;
 
16
        size_t  m_spriteram_size;
17
17
 
18
18
        /* video-related */
19
 
        tilemap_t *cj_tilemap;
20
 
        UINT8   flipscreen;
21
 
        UINT16  bgcolor;
 
19
        tilemap_t *m_cj_tilemap;
 
20
        UINT8   m_flipscreen;
 
21
        UINT16  m_bgcolor;
22
22
};
23
23
 
24
24
 
27
27
 
28
28
WRITE8_HANDLER( carjmbre_flipscreen_w );
29
29
WRITE8_HANDLER( carjmbre_bgcolor_w );
 
30
WRITE8_HANDLER( carjmbre_8806_w );
30
31
WRITE8_HANDLER( carjmbre_videoram_w );
31
32
 
32
33
PALETTE_INIT( carjmbre );
33
34
VIDEO_START( carjmbre );
34
 
VIDEO_UPDATE( carjmbre );
 
35
SCREEN_UPDATE( carjmbre );
35
36
 
36
37