From 42f39232662459ba279992c0e8dc825ed9c68ad9 Mon Sep 17 00:00:00 2001 From: Ash Logan Date: Sun, 9 Apr 2023 00:20:14 +1000 Subject: [PATCH] main: Switch to preferred error code format (598-XXXX) --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 6144af8..17105ee 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -352,7 +352,7 @@ DECL_FUNCTION(FSStatus, FSCloseFile, FSClient * client, FSCmdBlock * block, FSFi DECL_FUNCTION(uint32_t, NSSLExportInternalServerCertificate, NSSLServerCertId cert, int unk, void* unk2, void* unk3) { if (cert == NSSL_SERVER_CERT_THAWTE_PREMIUM_SERVER_CA) { // Martini patches - OSFatal("[JXT-598-0069] Please uninstall Martini patches to continue.\n" \ + OSFatal("[598-0069] Please uninstall Martini patches to continue.\n" \ "See pretendo.network/docs/search for more info.\n\n" \ "Hold the POWER button for 4 seconds to shut down.\n\n" " .\n" @@ -372,4 +372,4 @@ DECL_FUNCTION(uint32_t, NSSLExportInternalServerCertificate, NSSLServerCertId ce WUPS_MUST_REPLACE_FOR_PROCESS(FSOpenFile, WUPS_LOADER_LIBRARY_COREINIT, FSOpenFile, WUPS_FP_TARGET_PROCESS_MIIVERSE); WUPS_MUST_REPLACE_FOR_PROCESS(FSReadFile, WUPS_LOADER_LIBRARY_COREINIT, FSReadFile, WUPS_FP_TARGET_PROCESS_MIIVERSE); WUPS_MUST_REPLACE_FOR_PROCESS(FSCloseFile, WUPS_LOADER_LIBRARY_COREINIT, FSCloseFile, WUPS_FP_TARGET_PROCESS_MIIVERSE); -WUPS_MUST_REPLACE_FOR_PROCESS(NSSLExportInternalServerCertificate, WUPS_LOADER_LIBRARY_NSYSNET, NSSLExportInternalServerCertificate, WUPS_FP_TARGET_PROCESS_MIIVERSE); \ No newline at end of file +WUPS_MUST_REPLACE_FOR_PROCESS(NSSLExportInternalServerCertificate, WUPS_LOADER_LIBRARY_NSYSNET, NSSLExportInternalServerCertificate, WUPS_FP_TARGET_PROCESS_MIIVERSE);