Changeset 35045 in vbox
- Timestamp:
- Dec 13, 2010 9:14:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/RAW.cpp
r33786 r35045 92 92 {"ima", VDTYPE_FLOPPY}, 93 93 {"dsk", VDTYPE_FLOPPY}, 94 {"vfd", VDTYPE_FLOPPY}, 94 95 {NULL, VDTYPE_INVALID} 95 96 }; … … 544 545 else if ( !RTStrICmp(pszExtension, ".img") 545 546 || !RTStrICmp(pszExtension, ".ima") 546 || !RTStrICmp(pszExtension, ".dsk")) /* Floppy images */ 547 || !RTStrICmp(pszExtension, ".dsk") 548 || !RTStrICmp(pszExtension, ".vfd")) /* Floppy images */ 547 549 { 548 550 if (!(cbFile % 512) && cbFile <= RAW_MAX_FLOPPY_IMG_SIZE)
Note:
See TracChangeset
for help on using the changeset viewer.