Skip to content

Commit

Permalink
Merge pull request #11 from EmreXCoded/master
Browse files Browse the repository at this point in the history
Added Persona 5 Royal EU Encoding
  • Loading branch information
ShrineFox committed Jan 19, 2022
2 parents 8aeb199 + b00936b commit 52f5dd8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion AtlusScriptCompilerGUI/GUI.cs
Expand Up @@ -34,6 +34,7 @@ public partial class GUI
"Persona 4 Golden",
"Persona 5",
"Persona 5 Royal",
"Persona 5 Royal - EU",
"Persona Q2",
};

Expand Down Expand Up @@ -210,7 +211,16 @@ private static string GetArgument(string droppedFilePath, string extension, stri
if (extension == ".FLOW")
outFormatArg = "-OutFormat V3BE";
break;
case 9: //PQ2
case 9: //P5REU
encodingArg = "-Encoding P5R_EFIGS";
if (extension != ".BMD")
libraryArg = "-Library P5R";
if (extension == ".MSG")
outFormatArg = "-OutFormat V1"; //V1 = Persona 5 PS4 Output
if (extension == ".FLOW")
outFormatArg = "-OutFormat V3BE";
break;
case 10: //PQ2
encodingArg = "-Encoding SJ";
if (extension != ".BMD")
libraryArg = "-Library PQ2";
Expand Down

0 comments on commit 52f5dd8

Please sign in to comment.