~ubuntu-branches/ubuntu/karmic/xmame/karmic

« back to all changes in this revision

Viewing changes to src/vidhrdw/pcktgal.c

  • Committer: Bazaar Package Importer
  • Author(s): Bruno Barrera C.
  • Date: 2007-02-16 10:06:54 UTC
  • mfrom: (2.1.5 edgy)
  • Revision ID: james.westby@ubuntu.com-20070216100654-iztas2cl47k5j039
Tags: 0.106-2
* Added Italian debconf templates translation. (closes: #382672)
* Added German debconf templates translation. (closes: #396610)
* Added Japanese debconf templates translation. (closes: #400011)
* Added Portuguese debconf templates translation. (closes: #409960)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "driver.h"
2
 
#include "vidhrdw/generic.h"
3
2
 
4
 
static struct tilemap *bg_tilemap;
 
3
static tilemap *bg_tilemap;
5
4
 
6
5
PALETTE_INIT( pcktgal )
7
6
{
59
58
 
60
59
VIDEO_START( pcktgal )
61
60
{
62
 
        bg_tilemap = tilemap_create(get_bg_tile_info, tilemap_scan_rows, 
 
61
        bg_tilemap = tilemap_create(get_bg_tile_info, tilemap_scan_rows,
63
62
                TILEMAP_OPAQUE, 8, 8, 32, 32);
64
63
 
65
64
        if ( !bg_tilemap )
68
67
        return 0;
69
68
}
70
69
 
71
 
static void pcktgal_draw_sprites( struct mame_bitmap *bitmap )
 
70
static void pcktgal_draw_sprites( mame_bitmap *bitmap )
72
71
{
73
72
        int offs;
74
73