From: <pa...@us...> - 2008-12-14 19:46:26
|
Revision: 3905 http://fuse-emulator.svn.sourceforge.net/fuse-emulator/?rev=3905&view=rev Author: pak21 Date: 2008-12-14 19:46:23 +0000 (Sun, 14 Dec 2008) Log Message: ----------- Loosen signature checks for .dsk files (Gergely Szasz; thanks, zx81 and Simon Owen). Modified Paths: -------------- trunk/libspectrum/hacking/ChangeLog trunk/libspectrum/libspectrum.c Modified: trunk/libspectrum/hacking/ChangeLog =================================================================== --- trunk/libspectrum/hacking/ChangeLog 2008-12-10 22:28:01 UTC (rev 3904) +++ trunk/libspectrum/hacking/ChangeLog 2008-12-14 19:46:23 UTC (rev 3905) @@ -712,3 +712,5 @@ (libspectrum_0_5_0-branch) (Fred). 20081203 ChangeLog,Makefile.am,README,doc/libspectrum.{3,txt},hacking/ChangeLog, configure.in: merge libspectrum_0_5_0-branch changes onto trunk. +20081214 libspectrum.c: loosen signature checks for .dsk files (Gergely; + thanks, zx81 and Simon Owen). Modified: trunk/libspectrum/libspectrum.c =================================================================== --- trunk/libspectrum/libspectrum.c 2008-12-10 22:28:01 UTC (rev 3904) +++ trunk/libspectrum/libspectrum.c 2008-12-14 19:46:23 UTC (rev 3905) @@ -540,8 +540,8 @@ { LIBSPECTRUM_ID_DISK_IMG, "img", 3, NULL, 0, 0, 0 }, { LIBSPECTRUM_ID_DISK_UDI, "udi", 3, "UDI!", 0, 4, 4 }, - { LIBSPECTRUM_ID_DISK_ECPC, "dsk", 3, "EXTENDED CPC DSK File\r\nDisk-Info\r\n", 0, 34, 4 }, - { LIBSPECTRUM_ID_DISK_CPC, "dsk", 3, "MV - CPCEMU Disk-File\r\nDisk-Info\r\n", 0, 34, 4 }, + { LIBSPECTRUM_ID_DISK_ECPC, "dsk", 3, "EXTENDED", 0, 8, 4 }, + { LIBSPECTRUM_ID_DISK_CPC, "dsk", 3, "MV - CPC", 0, 8, 4 }, { LIBSPECTRUM_ID_DISK_FDI, "fdi", 3, "FDI", 0, 3, 4 }, { LIBSPECTRUM_ID_DISK_SAD, "sad", 3, "Aley's disk backup", 0, 18, 4 }, { LIBSPECTRUM_ID_DISK_TD0, "td0", 3, "TD", 0, 2, 4 }, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |