1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-22 18:26:39 +00:00

utils: show Discord server link on keyset errors

This commit is contained in:
Pablo Curiel 2023-11-26 22:12:23 +01:00
parent bd1b56e5c2
commit ea8bc05146
2 changed files with 1 additions and 3 deletions

View file

@ -133,6 +133,4 @@
#define DISCORD_SERVER_URL "https://discord.gg/SCbbcQx" #define DISCORD_SERVER_URL "https://discord.gg/SCbbcQx"
#define LOCKPICK_RCM_URL "https://github.com/shchmue/Lockpick_RCM"
#endif /* __DEFINES_H__ */ #endif /* __DEFINES_H__ */

View file

@ -202,7 +202,7 @@ bool utilsInitializeResources(const int program_argc, const char **program_argv)
/* Load keyset. */ /* Load keyset. */
if (!keysLoadKeyset()) if (!keysLoadKeyset())
{ {
LOG_MSG_ERROR("Failed to load keyset!\nUpdate your keys file with Lockpick_RCM:\n" LOCKPICK_RCM_URL); LOG_MSG_ERROR("Failed to load keyset!\nPlease update your keys file with Lockpick_RCM.\nYou can get an updated build at:" DISCORD_SERVER_URL);
break; break;
} }