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

« back to all changes in this revision

Viewing changes to src/mame/includes/dday.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:
12
12
                : driver_device(machine, config) { }
13
13
 
14
14
        /* memory pointers */
15
 
        UINT8 *        bgvideoram;
16
 
        UINT8 *        fgvideoram;
17
 
        UINT8 *        textvideoram;
18
 
        UINT8 *        colorram;
 
15
        UINT8 *        m_bgvideoram;
 
16
        UINT8 *        m_fgvideoram;
 
17
        UINT8 *        m_textvideoram;
 
18
        UINT8 *        m_colorram;
19
19
 
20
20
        /* video-related */
21
 
        tilemap_t        *fg_tilemap, *bg_tilemap, *text_tilemap, *sl_tilemap;
22
 
        bitmap_t       *main_bitmap;
23
 
        int            control;
24
 
        int            sl_image;
25
 
        int            sl_enable;
26
 
        int            timer_value;
 
21
        tilemap_t        *m_fg_tilemap;
 
22
        tilemap_t        *m_bg_tilemap;
 
23
        tilemap_t        *m_text_tilemap;
 
24
        tilemap_t        *m_sl_tilemap;
 
25
        bitmap_t       *m_main_bitmap;
 
26
        int            m_control;
 
27
        int            m_sl_image;
 
28
        int            m_sl_enable;
 
29
        int            m_timer_value;
27
30
 
28
31
        /* devices */
29
 
        device_t *ay1;
 
32
        device_t *m_ay1;
30
33
};
31
34
 
32
35
 
34
37
 
35
38
PALETTE_INIT( dday );
36
39
VIDEO_START( dday );
37
 
VIDEO_UPDATE( dday );
 
40
SCREEN_UPDATE( dday );
38
41
 
39
42
WRITE8_HANDLER( dday_bgvideoram_w );
40
43
WRITE8_HANDLER( dday_fgvideoram_w );