2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 12:27:43 +00:00

Update fmtlib

This commit is contained in:
Jack Andersen
2020-04-11 12:50:38 -10:00
parent 401f8b8ef5
commit 81c5d40211
9 changed files with 24 additions and 24 deletions

View File

@@ -34,7 +34,7 @@ SplitView::SplitView(ViewResources& res, View& parentView, ISplitSpaceController
View* SplitView::setContentView(int slot, View* view) {
if (slot < 0 || slot > 1)
Log.report(logvisor::Fatal, fmt("out-of-range slot to RootView::SplitView::setContentView"));
Log.report(logvisor::Fatal, FMT_STRING("out-of-range slot to RootView::SplitView::setContentView"));
View* ret = m_views[slot].m_view;
m_views[slot].m_view = view;
m_views[slot].m_mouseDown = 0;