From f1d777f172d50d0436afb9d2d0a09f0419c8a178 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Tue, 29 Sep 2020 01:01:51 -0400 Subject: [PATCH] MP1: Fix stale references to boo --- Runtime/MP1/MP1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/MP1/MP1.cpp b/Runtime/MP1/MP1.cpp index 3dc9dd871..571eddb71 100644 --- a/Runtime/MP1/MP1.cpp +++ b/Runtime/MP1/MP1.cpp @@ -740,10 +740,10 @@ void CMain::Init(const hecl::Runtime::FileStoreManager& storeMgr, hecl::CVarMana FMT_STRING("Attempted to initialize URDE in MP1 mode with non-MP1 data!!!!")); } hecl::SystemStringConv conv(GetVersionString()); - boo::SystemStringView versionView(conv.sys_str()); + boo2::SystemStringView versionView(conv.sys_str()); MainLog.report(logvisor::Level::Info, FMT_STRING(_SYS_STR("Loading data from Metroid Prime version {} from region {}{}")), versionView, - boo::SystemChar(GetRegion()), IsTrilogy() ? _SYS_STR(" from trilogy") : _SYS_STR("")); + boo2::SystemChar(GetRegion()), IsTrilogy() ? _SYS_STR(" from trilogy") : _SYS_STR("")); } else { MainLog.report(logvisor::Level::Fatal, FMT_STRING("Unable to load version info")); }