🐛Added support for Apple II character sets, fixes #102

This commit is contained in:
2017-12-26 18:52:21 +00:00
parent 56198b1ee6
commit 41180352de
10 changed files with 17 additions and 24 deletions

View File

@@ -66,8 +66,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
public void GetInformation(IMediaImage imagePlugin, Partition partition, out string information,
Encoding encoding)
{
// TODO: Until Apple ][ encoding is implemented
Encoding = new LisaRoman();
Encoding = encoding ?? new Apple2();
information = "";
StringBuilder sb = new StringBuilder();

View File

@@ -50,8 +50,7 @@ namespace DiscImageChef.Filesystems.AppleDOS
{
device = imagePlugin;
start = partition.Start;
// TODO: Until Apple ][ encoding is implemented
Encoding = new LisaRoman();
Encoding = encoding ?? new Apple2();
if(device.Info.Sectors != 455 && device.Info.Sectors != 560)
{