You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{ ELanguage::Italian, "Impossibile trovare il modulo \"%s\".\n\nAssicurati che:\n\n- Hai estratto questa copia di Unleashed Recompiled correttamente e non solo il file *.exe.\n- Non stai eseguendo Unleashed Recompiled da un file *.zip." }
704
704
}
705
705
},
706
+
{
707
+
"IntegrityCheck_Success",
708
+
{
709
+
{ ELanguage::English, "Installation check has finished.\n\nAll files seem to be correct.\n\nThe game will now close. Remove the launch argument to play the game." },
710
+
{ ELanguage::Japanese, "Installation check has finished.\n\nAll files seem to be correct.\n\nThe game will now close. Remove the launch argument to play the game." }, // TODO
711
+
{ ELanguage::German, "Installation check has finished.\n\nAll files seem to be correct.\n\nThe game will now close. Remove the launch argument to play the game." }, // TODO
712
+
{ ELanguage::French, "Installation check has finished.\n\nAll files seem to be correct.\n\nThe game will now close. Remove the launch argument to play the game." }, // TODO
713
+
{ ELanguage::Spanish, "Installation check has finished.\n\nAll files seem to be correct.\n\nThe game will now close. Remove the launch argument to play the game." }, // TODO
714
+
{ ELanguage::Italian, "Installation check has finished.\n\nAll files seem to be correct.\n\nThe game will now close. Remove the launch argument to play the game." }, // TODO
715
+
}
716
+
},
717
+
{
718
+
"IntegrityCheck_Failed",
719
+
{
720
+
{ ELanguage::English, "Installation check has failed.\n\nError: %s\n\nThe game will now close. Try reinstalling the game by using the --install launch argument." },
721
+
{ ELanguage::Japanese, "Installation check has failed.\n\nError: %s\n\nThe game will now close. Try reinstalling the game by using the --install launch argument." }, // TODO
722
+
{ ELanguage::German, "Installation check has failed.\n\nError: %s\n\nThe game will now close. Try reinstalling the game by using the --install launch argument." }, // TODO
723
+
{ ELanguage::French, "Installation check has failed.\n\nError: %s\n\nThe game will now close. Try reinstalling the game by using the --install launch argument." }, // TODO
724
+
{ ELanguage::Spanish, "Installation check has failed.\n\nError: %s\n\nThe game will now close. Try reinstalling the game by using the --install launch argument." }, // TODO
725
+
{ ELanguage::Italian, "Installation check has failed.\n\nError: %s\n\nThe game will now close. Try reinstalling the game by using the --install launch argument." }, // TODO
Copy file name to clipboardExpand all lines: UnleashedRecomp/main.cpp
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -250,13 +250,13 @@ int main(int argc, char *argv[])
250
250
uint32_t messageBoxStyle;
251
251
if (journal.lastResult == Journal::Result::Success)
252
252
{
253
-
snprintf(resultText, sizeof(resultText), "Installation check has finished.\n\nAll files seem to be correct.\n\nThe game will now close. Remove the launch argument to play the game.");
snprintf(resultText, sizeof(resultText), "Installation check has failed.\n\nError: %s\n\nThe game will now close. Try reinstalling the game by using the --install launch argument.", journal.lastErrorMessage.c_str());
0 commit comments