diff options
Diffstat (limited to 'src/emu/video.c')
-rw-r--r-- | src/emu/video.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/emu/video.c b/src/emu/video.c index 954f0ba4f01..9b890fe995e 100644 --- a/src/emu/video.c +++ b/src/emu/video.c @@ -1302,20 +1302,6 @@ static DEVICE_STOP( video_screen ) /*------------------------------------------------- - video_screen_set_info - device set info - callback --------------------------------------------------*/ - -static DEVICE_SET_INFO( video_screen ) -{ - switch (state) - { - /* no parameters to set */ - } -} - - -/*------------------------------------------------- video_screen_get_info - device get info callback -------------------------------------------------*/ @@ -1330,7 +1316,6 @@ DEVICE_GET_INFO( video_screen ) case DEVINFO_INT_CLASS: info->i = DEVICE_CLASS_VIDEO; break; /* --- the following bits of info are returned as pointers to data or functions --- */ - case DEVINFO_FCT_SET_INFO: info->set_info = DEVICE_SET_INFO_NAME(video_screen); break; case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(video_screen); break; case DEVINFO_FCT_STOP: info->stop = DEVICE_STOP_NAME(video_screen); break; case DEVINFO_FCT_RESET: /* Nothing */ break; |