Use ISO8859-1 for CD-i until escape sequences are implemented.

This commit is contained in:
2019-07-31 05:07:36 +01:00
parent bccbe8a73a
commit bc8dd3a486

View File

@@ -228,6 +228,9 @@ namespace DiscImageChef.Filesystems.ISO9660
pathTableMsbLocation = fsvd.Value.path_table_addr;
// TODO: Until escape sequences are implemented this is the default CD-i encoding.
Encoding = System.Text.Encoding.GetEncoding("iso8859-1");
// TODO: Implement CD-i
return Errno.NotImplemented;
}