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

« back to all changes in this revision

Viewing changes to src/mame/includes/darkmist.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:
4
4
        darkmist_state(running_machine &machine, const driver_device_config_base &config)
5
5
                : driver_device(machine, config) { }
6
6
 
7
 
        UINT8 *videoram;
 
7
        UINT8 *m_videoram;
 
8
        UINT8 *m_workram;
 
9
        int m_hw;
 
10
        UINT8 *m_scroll;
 
11
        UINT8 *m_spritebank;
 
12
        tilemap_t *m_bgtilemap;
 
13
        tilemap_t *m_fgtilemap;
 
14
        tilemap_t *m_txtilemap;
 
15
        UINT8 *m_spriteram;
 
16
        size_t m_spriteram_size;
8
17
};
9
18
 
10
19
 
11
 
/*----------- defined in drivers/darkmist.c -----------*/
12
 
 
13
 
extern int darkmist_hw;
14
 
 
15
 
 
16
20
/*----------- defined in video/darkmist.c -----------*/
17
21
 
18
22
VIDEO_START( darkmist );
19
 
VIDEO_UPDATE( darkmist );
 
23
SCREEN_UPDATE( darkmist );
20
24
PALETTE_INIT( darkmist );
21
25
 
22
 
extern UINT8 *darkmist_scroll;
23
 
extern UINT8 *darkmist_spritebank;