2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-13 09:25:52 +00:00

MP1: char -> boo::SystemChar

This commit is contained in:
Luke Street 2020-04-17 14:31:29 -04:00
parent 73b9d2024b
commit 248e7654fa

View File

@ -799,7 +799,7 @@ void CMain::Init(const hecl::Runtime::FileStoreManager& storeMgr, hecl::CVarMana
hecl::SystemStringConv conv(GetVersionString()); hecl::SystemStringConv conv(GetVersionString());
boo::SystemStringView versionView(conv.sys_str()); boo::SystemStringView versionView(conv.sys_str());
MainLog.report(logvisor::Level::Info, FMT_STRING("Loading data from Metroid Prime version {} from region {}{}"), 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 { } else {
MainLog.report(logvisor::Level::Fatal, FMT_STRING("Unable to load version info")); MainLog.report(logvisor::Level::Fatal, FMT_STRING("Unable to load version info"));
} }