From 5fff911ba6ca1326bb4aee619ffdb7cbf7344ac1 Mon Sep 17 00:00:00 2001 From: yellows111 Date: Thu, 12 Oct 2023 07:54:59 +0100 Subject: [PATCH] correction: it's an EMS memory adapter, not MAX, that's a whole other can of worms --- .gitignore | 4 ++++ icon.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..95de712 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.ico +*.icn +icon.sys +*.psu \ No newline at end of file diff --git a/icon.js b/icon.js index 04b20dd..5e022ed 100644 --- a/icon.js +++ b/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";