mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Various fixes (#23)
* Sort disks in category order * Fix saving disk * Fix keyboard not working after modal * Make caps lock key on keyboard work, while keeping caps lock on virtual keyboard working too * Fix delete local storage * Fix minus key on Mac * Remove backtick * Credit. Co-authored-by: Matthew Hebley <Matthew.Hebley@navico.com>
This commit is contained in:
@@ -390,7 +390,7 @@ export function jsonEncode(cur, pretty) {
|
||||
data[t] = base64_encode(cur.tracks[t]);
|
||||
} else {
|
||||
for (var s = 0; s < 0x10; s++) {
|
||||
data[t][s] = base64_encode(readSector(cur, t));
|
||||
data[t][s] = base64_encode(readSector(cur, t, s));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user