diff options
author | 2011-07-20 14:43:13 +0000 | |
---|---|---|
committer | 2011-07-20 14:43:13 +0000 | |
commit | 215096c140cb70bfdd26546ac43720bb0799d2e7 (patch) | |
tree | bb48673f0352837b90e4716840448a4696070bc5 /src/lib/formats/ti99_dsk.c | |
parent | c7b15e2689c662b7332d5fe1c231e39beb810ba7 (diff) |
Renamed FLOPPY_OPTION* to LEGACY_FLOPPY_OPTION* (no whatsnew)
Diffstat (limited to 'src/lib/formats/ti99_dsk.c')
-rw-r--r-- | src/lib/formats/ti99_dsk.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/ti99_dsk.c b/src/lib/formats/ti99_dsk.c index bc48618d096..5adbde4775f 100644 --- a/src/lib/formats/ti99_dsk.c +++ b/src/lib/formats/ti99_dsk.c @@ -2021,16 +2021,16 @@ static FLOPPY_CONSTRUCT(ti99_tdf_construct) /* ----------------------------------------------------------------------- */ -FLOPPY_OPTIONS_START( ti99 ) - FLOPPY_OPTION( ti99_sdf, "dsk", "TI99 sector dump (v9t9)", ti99_sdf_identify, ti99_sdf_construct, NULL, +LEGACY_FLOPPY_OPTIONS_START( ti99 ) + LEGACY_FLOPPY_OPTION( ti99_sdf, "dsk", "TI99 sector dump (v9t9)", ti99_sdf_identify, ti99_sdf_construct, NULL, HEADS([1]-2) TRACKS(35-[40]-80) SECTORS(8/9/16/[18]/36) SECTOR_LENGTH([256]) FIRST_SECTOR_ID(0)) - FLOPPY_OPTION( ti99_tdf, "dsk,dtk", "TI99 track dump (pc99)", ti99_tdf_identify, ti99_tdf_construct, NULL, + LEGACY_FLOPPY_OPTION( ti99_tdf, "dsk,dtk", "TI99 track dump (pc99)", ti99_tdf_identify, ti99_tdf_construct, NULL, TRACKS(35-[40]-80) SECTORS(8/9/16/[18]/36) SECTOR_LENGTH([256]) FIRST_SECTOR_ID(0)) -FLOPPY_OPTIONS_END +LEGACY_FLOPPY_OPTIONS_END |