From 22bc54470afb046831dc037d34384bdcb9ce8cb6 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 4 Aug 2026 09:01:22 +0200 Subject: [PATCH] correct manual code error --- cimgui.cpp | 2 +- generator/cimgui_template.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 2e14754..fa5440a 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -6635,7 +6635,7 @@ CIMGUI_API void ImGuiTextBuffer_appendf(ImGuiTextBuffer *self, const char *fmt, #ifdef CIMGUI_VARGS0 CIMGUI_API void ImGuiTextBuffer_appendf0(ImGuiTextBuffer *self, const char *fmt) { - ImGuiTextBuffer_appendf(self,fmt) + ImGuiTextBuffer_appendf(self,fmt); } #endif diff --git a/generator/cimgui_template.cpp b/generator/cimgui_template.cpp index 75d67e5..66b3942 100644 --- a/generator/cimgui_template.cpp +++ b/generator/cimgui_template.cpp @@ -20,7 +20,7 @@ CIMGUI_API void ImGuiTextBuffer_appendf(ImGuiTextBuffer *self, const char *fmt, #ifdef CIMGUI_VARGS0 CIMGUI_API void ImGuiTextBuffer_appendf0(ImGuiTextBuffer *self, const char *fmt) { - ImGuiTextBuffer_appendf(self,fmt) + ImGuiTextBuffer_appendf(self,fmt); } #endif