mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
Fix format string
This commit is contained in:
parent
908a8ae58f
commit
9f055d1d76
1 changed files with 2 additions and 2 deletions
|
@ -390,7 +390,7 @@ void swkbd_render(bool mainWindow)
|
||||||
ImGui::PushFont(font);
|
ImGui::PushFont(font);
|
||||||
if (ImGui::Begin("Keyboard Input", nullptr, kPopupFlags))
|
if (ImGui::Begin("Keyboard Input", nullptr, kPopupFlags))
|
||||||
{
|
{
|
||||||
ImGui::Text(_utf8WrapperPtr(ICON_FA_KEYBOARD));
|
ImGui::Text("%s", _utf8WrapperPtr(ICON_FA_KEYBOARD));
|
||||||
ImGui::SameLine(70);
|
ImGui::SameLine(70);
|
||||||
auto text = boost::nowide::narrow(fmt::format(L"{}", swkbdInternalState->formStringBuffer));
|
auto text = boost::nowide::narrow(fmt::format(L"{}", swkbdInternalState->formStringBuffer));
|
||||||
|
|
||||||
|
@ -647,4 +647,4 @@ namespace swkbd
|
||||||
osLib_addFunction("swkbd", "SwkbdIsNeedCalcSubThreadFont__3RplFv", swkbdExport_SwkbdIsNeedCalcSubThreadFont);
|
osLib_addFunction("swkbd", "SwkbdIsNeedCalcSubThreadFont__3RplFv", swkbdExport_SwkbdIsNeedCalcSubThreadFont);
|
||||||
osLib_addFunction("swkbd", "SwkbdIsNeedCalcSubThreadPredict__3RplFv", swkbdExport_SwkbdIsNeedCalcSubThreadPredict);
|
osLib_addFunction("swkbd", "SwkbdIsNeedCalcSubThreadPredict__3RplFv", swkbdExport_SwkbdIsNeedCalcSubThreadPredict);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue