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

« back to all changes in this revision

Viewing changes to src/mame/includes/galpanic.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:
 
1
class galpanic_state : public driver_device
 
2
{
 
3
public:
 
4
        galpanic_state(running_machine &machine, const driver_device_config_base &config)
 
5
                : driver_device(machine, config) { }
 
6
 
 
7
        UINT16 *m_bgvideoram;
 
8
        UINT16 *m_fgvideoram;
 
9
        size_t m_fgvideoram_size;
 
10
        bitmap_t *m_sprites_bitmap;
 
11
        UINT16 *m_spriteram;
 
12
        size_t m_spriteram_size;
 
13
};
 
14
 
 
15
 
1
16
/*----------- defined in video/galpanic.c -----------*/
2
17
 
3
 
extern UINT16 *galpanic_bgvideoram,*galpanic_fgvideoram;
4
 
extern size_t galpanic_fgvideoram_size;
5
 
 
6
18
PALETTE_INIT( galpanic );
7
19
WRITE16_HANDLER( galpanic_bgvideoram_w );
8
20
WRITE16_HANDLER( galpanic_paletteram_w );
9
21
VIDEO_START( galpanic );
10
 
VIDEO_UPDATE( galpanic );
11
 
VIDEO_UPDATE( comad );
 
22
SCREEN_UPDATE( galpanic );
 
23
SCREEN_UPDATE( comad );
12
24
 
13
25