From c6a4a3221e72dc043fd2e025595d66403c6974c2 Mon Sep 17 00:00:00 2001 From: Martins Mozeiko Date: Sun, 24 Sep 2017 13:04:57 -0700 Subject: [PATCH] add PCSD prefix as JPN region --- pkg2zip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg2zip.c b/pkg2zip.c index 0088447..eb93102 100644 --- a/pkg2zip.c +++ b/pkg2zip.c @@ -116,7 +116,7 @@ static const char* get_region(const char* id) return "JPN"; } else if (memcmp(id, "VCAS", 4) == 0 || memcmp(id, "PCSH", 4) == 0 || - memcmp(id, "VLAS", 4) == 0) + memcmp(id, "VLAS", 4) == 0 || memcmp(id, "PCSD", 4) == 0) { return "ASA"; }