diff options
Diffstat (limited to 'src/mess/video/pk8020.c')
-rw-r--r-- | src/mess/video/pk8020.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/video/pk8020.c b/src/mess/video/pk8020.c index bbb55d0c138..a265879ea33 100644 --- a/src/mess/video/pk8020.c +++ b/src/mess/video/pk8020.c @@ -11,7 +11,7 @@ #include "includes/pk8020.h" #include "machine/ram.h" -VIDEO_START( pk8020 ) +void pk8020_state::video_start() { } @@ -49,10 +49,10 @@ SCREEN_UPDATE_IND16( pk8020 ) return 0; } -PALETTE_INIT( pk8020 ) +void pk8020_state::palette_init() { int i; for(i=0;i<16;i++) { - palette_set_color( machine, i, MAKE_RGB(i*0x10,i*0x10,i*0x10) ); + palette_set_color( machine(), i, MAKE_RGB(i*0x10,i*0x10,i*0x10) ); } } |