mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🐛Added support for Apple II character sets, fixes #102
This commit is contained in:
@@ -46,8 +46,7 @@ namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
public Errno Mount(IMediaImage imagePlugin, Partition partition, Encoding encoding, bool debug)
|
||||
{
|
||||
device = imagePlugin;
|
||||
// TODO: Until Apple ][ encoding is implemented
|
||||
Encoding = new LisaRoman();
|
||||
Encoding = encoding ?? new Apple2();
|
||||
this.debug = debug;
|
||||
if(device.Info.Sectors < 3) return Errno.InvalidArgument;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user