From a31bb7a27cdb56ac1bf38138cf145052cb4fb643 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 24 Mar 2017 16:44:38 +0100 Subject: [PATCH] Clarify the log message for unknown Wii Menu regions Saying just "title" made it seem like we are showing the title ID, but what we actually are showing is the title version. --- Source/Core/DiscIO/Enums.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/Enums.cpp b/Source/Core/DiscIO/Enums.cpp index c84fb5ac6f15..bfd9da025400 100644 --- a/Source/Core/DiscIO/Enums.cpp +++ b/Source/Core/DiscIO/Enums.cpp @@ -183,7 +183,7 @@ std::string GetSysMenuVersionString(u16 title_version) region_letter = "K"; break; case Region::UNKNOWN_REGION: - WARN_LOG(DISCIO, "Unknown Region for title: %u", title_version); + WARN_LOG(DISCIO, "Unknown region for Wii Menu version %u", title_version); break; }