From 248e7654fa7cbfac0a46f1bb4f6a2a416567dc5b Mon Sep 17 00:00:00 2001 From: Luke Street Date: Fri, 17 Apr 2020 14:31:29 -0400 Subject: [PATCH] MP1: char -> boo::SystemChar --- Runtime/MP1/MP1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/MP1/MP1.cpp b/Runtime/MP1/MP1.cpp index 06c74a17a..f68b07602 100644 --- a/Runtime/MP1/MP1.cpp +++ b/Runtime/MP1/MP1.cpp @@ -799,7 +799,7 @@ void CMain::Init(const hecl::Runtime::FileStoreManager& storeMgr, hecl::CVarMana hecl::SystemStringConv conv(GetVersionString()); boo::SystemStringView versionView(conv.sys_str()); MainLog.report(logvisor::Level::Info, FMT_STRING("Loading data from Metroid Prime version {} from region {}{}"), - versionView, char(GetRegion()), IsTrilogy() ? _SYS_STR(" from trilogy") : _SYS_STR("")); + versionView, boo::SystemChar(GetRegion()), IsTrilogy() ? _SYS_STR(" from trilogy") : _SYS_STR("")); } else { MainLog.report(logvisor::Level::Fatal, FMT_STRING("Unable to load version info")); }