From fa73ee954fdf332c6546dbd8e8b58d199b16d495 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 21 Apr 2024 12:53:10 +0200 Subject: [PATCH] Update error message when using an outdated aroma version --- source/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index 9a96cdf..277ff37 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -13,7 +13,11 @@ int main(int argc, char **argv) { basePath = argv[0]; } if (argc < 4 || std::string_view("EnvironmentLoader") != argv[1] || (uint32_t) argv[2] < 2 || (uint32_t) argv[3] == 0) { - OSFatal("WUMSLoader: Failed to parse arguments, make sure to use the latest environment loader.\n See https://wiiu.hacks.guide/ for more information."); + OSFatal("WUMSLoader:\n" + "Failed to parse arguments! Make sure to use the latest\n" + "version of the EnvironmentLoader.\n" + "\n\n" + "See https://wiiu.hacks.guide/ for instructions on how to update!"); } memcpy(MEMORY_REGION_USABLE_MEM_REGION_END_VALUE_PTR, &argv[3], sizeof(uint32_t));