~ubuntu-branches/ubuntu/raring/mame/raring-proposed

« back to all changes in this revision

Viewing changes to src/mame/video/m72.c

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jordi Mallach, Emmanuel Kasper
  • Date: 2011-12-19 22:56:27 UTC
  • mfrom: (0.1.2)
  • Revision ID: package-import@ubuntu.com-20111219225627-ub5oga1oys4ogqzm
Tags: 0.144-1
[ Jordi Mallach ]
* Fix syntax errors in DEP5 copyright file (lintian).
* Use a versioned copyright Format specification field.
* Update Vcs-* URLs.
* Move transitional packages to the new metapackages section, and make
  them priority extra.
* Remove references to GNU/Linux and MESS sources from copyright.
* Add build variables for s390x.
* Use .xz tarballs as it cuts 4MB for the upstream sources.
* Add nplayers.ini as a patch. Update copyright file to add CC-BY-SA-3.0.

[ Emmanuel Kasper ]
* New upstream release. Closes: #651538.
* Add Free Desktop compliant png icons of various sizes taken from
  the hydroxygen iconset
* Mess is now built from a new source package, to avoid possible source
  incompatibilities between mame and the mess overlay.
* Mame-tools are not built from the mame source package anymore, but
  from the mess source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#include "audio/m72.h"
3
3
#include "includes/m72.h"
4
4
 
5
 
 
6
 
 
7
 
 
8
 
 
9
 
 
10
5
/***************************************************************************
11
6
 
12
7
  Callbacks for the TileMap code
147
142
        register_savestate(machine);
148
143
}
149
144
 
 
145
VIDEO_START( xmultipl )
 
146
{
 
147
        m72_state *state = machine.driver_data<m72_state>();
 
148
        VIDEO_START_CALL(m72);
 
149
 
 
150
        tilemap_set_scrolldx(state->m_fg_tilemap,4,0);
 
151
        tilemap_set_scrolldx(state->m_bg_tilemap,6,0);
 
152
}
 
153
 
150
154
VIDEO_START( rtype2 )
151
155
{
152
156
        m72_state *state = machine.driver_data<m72_state>();
183
187
        tilemap_set_scrolldx(state->m_bg_tilemap,6,0);
184
188
}
185
189
 
 
190
VIDEO_START( hharryu )
 
191
{
 
192
        m72_state *state = machine.driver_data<m72_state>();
 
193
        VIDEO_START_CALL(rtype2);
 
194
 
 
195
        tilemap_set_scrolldx(state->m_fg_tilemap,4,0);
 
196
        tilemap_set_scrolldx(state->m_bg_tilemap,6,0);
 
197
}
186
198
 
187
199
/* Major Title has a larger background RAM, and rowscroll */
188
200
VIDEO_START( majtitle )