diff options
author | 2012-09-17 15:00:31 +0000 | |
---|---|---|
committer | 2012-09-17 15:00:31 +0000 | |
commit | 5ddbca3e7a2327786fd92cc7443dd84257ba889a (patch) | |
tree | f6eb4b827714a8658ea246336342b03d6d7938e0 /src/mess/drivers/electron.c | |
parent | f27b07d0822f4ff52b95a1a0143f3c2313ea02ce (diff) |
Modernized screen update calls (no whatsnew)
Diffstat (limited to 'src/mess/drivers/electron.c')
-rw-r--r-- | src/mess/drivers/electron.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/electron.c b/src/mess/drivers/electron.c index 28c3fce666e..532b7a335cf 100644 --- a/src/mess/drivers/electron.c +++ b/src/mess/drivers/electron.c @@ -185,7 +185,7 @@ static MACHINE_CONFIG_START( electron, electron_state ) MCFG_SCREEN_REFRESH_RATE( 50.08 ) MCFG_SCREEN_SIZE( 640, 312 ) MCFG_SCREEN_VISIBLE_AREA( 0, 640-1, 0, 256-1 ) - MCFG_SCREEN_UPDATE_STATIC(electron) + MCFG_SCREEN_UPDATE_DRIVER(electron_state, screen_update_electron) MCFG_PALETTE_LENGTH( 16 ) |