mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
Fixed incorrect default screen size computations.
This commit is contained in:
parent
37c6be050d
commit
1b35fe1925
@ -1022,7 +1022,7 @@ static MACHINE_DRIVER_START( zunit )
|
||||
|
||||
MDRV_SCREEN_ADD("main", 0)
|
||||
MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
|
||||
MDRV_SCREEN_RAW_PARAMS(MEDRES_PIXEL_CLOCK, 673, 0, 511, 433, 0, 399)
|
||||
MDRV_SCREEN_RAW_PARAMS(MEDRES_PIXEL_CLOCK*2, 673, 0, 511, 433, 0, 399)
|
||||
|
||||
MDRV_VIDEO_START(midzunit)
|
||||
MDRV_VIDEO_UPDATE(tms340x0)
|
||||
@ -1055,7 +1055,7 @@ static MACHINE_DRIVER_START( yunit_core )
|
||||
|
||||
MDRV_SCREEN_ADD("main", 0)
|
||||
MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
|
||||
MDRV_SCREEN_RAW_PARAMS(STDRES_PIXEL_CLOCK, 505, 0, 399, 289, 0, 253)
|
||||
MDRV_SCREEN_RAW_PARAMS(STDRES_PIXEL_CLOCK*2, 505, 0, 399, 289, 0, 253)
|
||||
|
||||
MDRV_VIDEO_UPDATE(tms340x0)
|
||||
MACHINE_DRIVER_END
|
||||
|
Loading…
Reference in New Issue
Block a user