summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/gb_lcd.c
Commit message (Collapse)AuthorAgeFilesLines
* finish setting copyright holders for MESS section (nw) Miodrag Milanovic2015-05-131-2/+2
|
* Added dummy license lines to each file for MESS (nw) Miodrag Milanovic2015-05-071-0/+2
|
* gb_lcd.c: added missing save state, fixes supergb save state problem (nw) Osso2014-12-311-0/+1
|
* gb_lcd.c: Fix another index out of bound access in the supergb driver (nw) Wilbert Pol2014-07-281-1/+2
|
* gb_lcd.c: Prevent some out of bound array accesses (nw) Wilbert Pol2014-07-271-7/+10
|
* (MESS) gb.c: Added GameBoy Pocket Boot ROM. [BennVenn] Michaël Banaan Ananas2014-06-101-31/+0
|
* (MESS) gb_lcd.c: Initialize m_sgb_tile_map. (nw) Wilbert Pol2014-04-301-0/+2
|
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-1/+1
|
* (MESS) gb_lcd.c: Fixed sgb m_sgb_pal_map out of bound access. (nw) Wilbert Pol2014-04-011-6/+4
|
* small LSB_FIRST cleanup (nw) Oliver Stöneberg2014-03-301-3/+2
|
* removed some of machine().first_screen() users (nw) Miodrag Milanovic2014-03-141-5/+3
|
* added asserts for known index out-of-bounds accesses (nw) Oliver Stöneberg2014-03-081-0/+2
|
* (MESS) minor cleanup. nw. Fabio Priuli2014-01-291-10/+13
|
* Created new device_video_interface. Right now its sole purpose is to Aaron Giles2013-07-241-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | house a screen tag and to find the screen at startup, providing an m_screen object that can be used. One nice feature is that if there is only one screen and no screen has been specified, it will auto configure to that screen. This removes the need to explicitly specify a screen in the configuration for a large chunk of drivers (though doing so never hurts). A new macro MCFG_VIDEO_SET_SCREEN is provided, though devices are encouraged to define their own that maps there so it is obvious which device is being targeted. The device_video_interface's validation function will error if an invalid screen is specified or if no screen is provided but there are multiple screens present. Updated all devices that currently had an m_screen in them to use the device_video_interface instead. This also has the nice benefit of flagging video-related devices for categorization purposes. It also means all these devices inherit the same screen-finding behaviors. For devices that had interfaces that specified a screen tag, those have been removed and all existing structs updated. Added an optional_device<screen_device> m_screen to the base driver_device. If you name your screen "screen" (as most drivers do), you will have free access to your screen this way. Future updates include: * Updating all devices referencing machine.primary_screen to use the device_video_interface instead * Updating all drivers referencing machine.primary_screen to use the m_screen instead * Removing machine.primary_screen entirely
* Cleanups and version bumpmame0149u1 Miodrag Milanovic2013-07-231-45/+43
|
* (MESS) gb: misc lcd & includes cleanups. nw. Fabio Priuli2013-06-241-0/+2875