mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
🐛Added support for Apple II character sets, fixes #102
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user