From 79bfdb7ff4876eb7d229e0ac92167da87b2459be Mon Sep 17 00:00:00 2001 From: sup39 Date: Mon, 20 Feb 2023 20:41:06 +0900 Subject: [PATCH] Fix GCI file name for GMSJ0A --- changelog.md | 3 ++- site/.vuepress/components/DownloadButton.vue | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 6cf45b6..ab3b968 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,7 @@ # Changelog ## Feb 20, 2023 -Put Memory Card Patch codes in GCT instead of GCI +- Put Memory Card Patch codes in GCT instead of GCI +- Fix GCI file name for GMSJ0A ## Feb 13, 2023 - Added 'Mario State Savestate' diff --git a/site/.vuepress/components/DownloadButton.vue b/site/.vuepress/components/DownloadButton.vue index 522cdc8..110143a 100644 --- a/site/.vuepress/components/DownloadButton.vue +++ b/site/.vuepress/components/DownloadButton.vue @@ -197,7 +197,7 @@ export default { code += 'C0000000000000023C60817F81E317FC7DE478504E800020'; // return const codeSize = code.length>>1; - const fileName = `GCT_${version}`; + const fileName = `GCT_${this.versionIdentifier}`; // GMSJ0A const blockCount = 6; // Math.ceil(codeSize/0x2000); // TODO const headSize = 0x40; const gciSize = headSize+0x2000*blockCount;