correction: it's an EMS memory adapter, not MAX, that's a whole other can of worms
This commit is contained in:
parent
06b1de707b
commit
5fff911ba6
|
@ -0,0 +1,4 @@
|
|||
*.ico
|
||||
*.icn
|
||||
icon.sys
|
||||
*.psu
|
2
icon.js
2
icon.js
|
@ -207,7 +207,7 @@ function readEntryBlock(input) {
|
|||
const permissions = u32le(0);
|
||||
let type;
|
||||
if (permissions>0xffff) {
|
||||
throw `Not a EMS Max (PSU) save file (was ${permissions}, expected less than ${0xffff})`;
|
||||
throw `Not a EMS Memory Adapter (PSU) export file (was ${permissions}, expected less than ${0xffff})`;
|
||||
}
|
||||
if((permissions & 0b00100000)>=1){
|
||||
type = "directory";
|
||||
|
|
Loading…
Reference in New Issue