Skip to content

Commit e8f04d8

Browse files
committed
Fix compilation error
1 parent a863655 commit e8f04d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UImGuiTextUtilsTypefaces.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ void UImGui::TextUtils::SmallWrapped(const char* fmt, ...) noexcept
6565
CUSTOM_FONT_BOILERPLATE_WRAPPED(fmt, smallFont);
6666
}
6767

68-
void UImGui::TextUtils::customFontGenericText(const char* fmt, ImFont* font, const va_list args) noexcept
68+
void UImGui::TextUtils::customFontGenericText(const char* fmt, ImFont* font, va_list args) noexcept
6969
{
7070
ImGui::PushFont(font);
7171
ImGui::TextV(fmt, args);
7272
ImGui::PopFont();
7373
}
7474

75-
void UImGui::TextUtils::customFontGenericTextWrapped(const char* fmt, ImFont* font, const va_list args) noexcept
75+
void UImGui::TextUtils::customFontGenericTextWrapped(const char* fmt, ImFont* font, va_list args) noexcept
7676
{
7777
ImGui::PushFont(font);
7878
ImGui::TextWrappedV(fmt, args);

0 commit comments

Comments
 (0)