~ubuntu-branches/ubuntu/precise/mame/precise-proposed

« back to all changes in this revision

Viewing changes to src/mame/includes/gaiden.h

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2010-08-01 23:18:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100801231831-9dj2qbsynutixsoe
Tags: 0.139-0ubuntu1
* New upstream release (LP: #612070)
* debian/contrib/manpages: removed, accepted upstream
* debian/patches/:
  - deprecated_gtk_macros: removed, fixed upstream
  - missing_newline.patch: removed, fixed upstream
  - typos.patch: removed, fixed upstream
* debian/rules: new variables SYMLEVEL and DUMPSYM
* mame-tools: ldplayer removed, possibly for good (FTBFS upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
        size_t      spriteram_size;
20
20
 
21
21
        /* video-related */
22
 
        tilemap_t     *text_layer,*foreground,*background;
 
22
        tilemap_t   *text_layer,*foreground,*background;
23
23
        bitmap_t    *sprite_bitmap, *tile_bitmap_bg, *tile_bitmap_fg;
24
24
        UINT16      tx_scroll_x, tx_scroll_y;
25
25
        UINT16      bg_scroll_x, bg_scroll_y;
26
26
        UINT16      fg_scroll_x, fg_scroll_y;
 
27
        INT8            tx_offset_y, bg_offset_y, fg_offset_y, spr_offset_y;
27
28
 
28
29
        /* misc */
29
30
        int         sprite_sizey;
52
53
WRITE16_HANDLER( gaiden_videoram3_w );
53
54
READ16_HANDLER( gaiden_videoram3_r );
54
55
 
 
56
WRITE16_HANDLER( gaiden_flip_w );
55
57
WRITE16_HANDLER( gaiden_txscrollx_w );
56
58
WRITE16_HANDLER( gaiden_txscrolly_w );
57
59
WRITE16_HANDLER( gaiden_fgscrollx_w );
58
60
WRITE16_HANDLER( gaiden_fgscrolly_w );
59
61
WRITE16_HANDLER( gaiden_bgscrollx_w );
60
62
WRITE16_HANDLER( gaiden_bgscrolly_w );
61
 
WRITE16_HANDLER( gaiden_flip_w );
 
63
WRITE16_HANDLER( gaiden_txoffsety_w );
 
64
WRITE16_HANDLER( gaiden_fgoffsety_w );
 
65
WRITE16_HANDLER( gaiden_bgoffsety_w );
 
66
WRITE16_HANDLER( gaiden_sproffsety_w );