mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Corrected some NEC types.
This commit is contained in:
41
DiscImageChef.DiscImages/D88.cs
Normal file
41
DiscImageChef.DiscImages/D88.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : D88.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Component
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Description
|
||||
//
|
||||
// --[ License ] --------------------------------------------------------------
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Lesser General Public License as
|
||||
// published by the Free Software Foundation; either version 2.1 of the
|
||||
// License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful, but
|
||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public
|
||||
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright © 2011-2017 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
using System;
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public class D88
|
||||
{
|
||||
public D88()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -181,7 +181,6 @@ namespace DiscImageChef.ImagePlugins
|
||||
case 1304320: // T0S0 = 128bps, T0S1 = 256bps
|
||||
case 1255168: // T0S0 = 128bps, T0S1 = 256bps
|
||||
case 1261568:
|
||||
case 1310720:
|
||||
case 1638400:
|
||||
ImageInfo.sectorSize = 1024;
|
||||
break;
|
||||
@@ -710,11 +709,11 @@ namespace DiscImageChef.ImagePlugins
|
||||
case 1255168:
|
||||
return MediaType.ECMA_69_8;
|
||||
case 1261568:
|
||||
return MediaType.NEC_8_DD;
|
||||
case 1304320:
|
||||
if(extension == ".hdm")
|
||||
return MediaType.NEC_525_HD;
|
||||
return MediaType.NEC_8_DD;
|
||||
case 1304320:
|
||||
return MediaType.ECMA_99_8;
|
||||
case 1310720:
|
||||
return MediaType.NEC_525_HD;
|
||||
case 1427456:
|
||||
return MediaType.FDFORMAT_525_HD;
|
||||
case 1474560:
|
||||
@@ -733,6 +732,8 @@ namespace DiscImageChef.ImagePlugins
|
||||
return MediaType.XDF_35;
|
||||
case 2949120:
|
||||
return MediaType.DOS_35_ED;
|
||||
case 9338880:
|
||||
return MediaType.NEC_35_TD;
|
||||
case 40387584:
|
||||
return MediaType.PocketZip;
|
||||
case 126222336:
|
||||
|
||||
Reference in New Issue
Block a user