~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
#include "genesis.h"
14
14
 
15
 
/* in video/segasyse.c */
16
 
VIDEO_START( megaplay_normal );
17
 
VIDEO_UPDATE( megaplay_normal );
18
15
 
19
16
static const device_config *genesis_screen;
20
17
 
279
276
/* megaplay, draws either Genesis or SMS (single screen display) */
280
277
 
281
278
/* core refresh: computes the final screen */
 
279
#if 0
282
280
VIDEO_UPDATE( megaplay )
283
281
{
284
282
        int y;
287
285
        for (y = cliprect->min_y; y <= cliprect->max_y; y++)
288
286
                drawline(BITMAP_ADDR16(bitmap, y, 0), y, 0);
289
287
 
290
 
        VIDEO_UPDATE_CALL(megaplay_normal);
 
288
        //VIDEO_UPDATE_CALL(megaplay_normal);
291
289
 
292
290
        return 0;
293
291
}
 
292
#endif
294
293
 
295
294
void system18_vdp_update( bitmap_t *bitmap, const rectangle *cliprect )
296
295
{