summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/imagedev/flopdrv.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-03-06 07:30:55 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-03-06 07:30:55 +0000
commit686e8cea5217cbd0a37bff1edaf6f2ebe5d9b0f4 (patch)
treea342570a370776eda46cd146d5a136b06868ef61 /src/emu/imagedev/flopdrv.c
parent5f83fb7118405e96ad1597c6c40f53071e70e124 (diff)
Sync with MESS (no whatsnew)
Diffstat (limited to 'src/emu/imagedev/flopdrv.c')
-rw-r--r--src/emu/imagedev/flopdrv.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/imagedev/flopdrv.c b/src/emu/imagedev/flopdrv.c
index e46ed15345f..8ef5b40eb2b 100644
--- a/src/emu/imagedev/flopdrv.c
+++ b/src/emu/imagedev/flopdrv.c
@@ -117,13 +117,10 @@ static const floppy_error_map errmap[] =
/***************************************************************************
IMPLEMENTATION
***************************************************************************/
-//DECLARE_LEGACY_IMAGE_DEVICE(FLOPPY_APPLE, apple525);
-//DECLARE_LEGACY_IMAGE_DEVICE(FLOPPY_SONY, sonydriv);
INLINE floppy_drive *get_safe_token(device_t *device)
{
assert( device != NULL );
- //assert( device->type() == LEGACY_FLOPPY || device->type() == FLOPPY_APPLE || device->type() == FLOPPY_SONY);
return (floppy_drive *) downcast<legacy_floppy_image_device *>(device)->token();
}