From 7b803a131646ae9b9dd16eae5486e8e36aa283af Mon Sep 17 00:00:00 2001 From: Fan Mingxuan <110683147+FeJS8888@users.noreply.github.com> Date: Tue, 13 Jan 2026 19:11:08 +0800 Subject: [PATCH] Update ege_roundrect to include PIMAGE parameter --- src/egegapi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/egegapi.cpp b/src/egegapi.cpp index 57ecbb1c..46a9e04f 100644 --- a/src/egegapi.cpp +++ b/src/egegapi.cpp @@ -2022,7 +2022,7 @@ static Gdiplus::GraphicsPath* createRoundRectPath(float x, float y, float w, flo void ege_roundrect(float x, float y, float w, float h, float radius, PIMAGE pimg) { - ege_roundrect(x, y, w, h, radius, radius, radius, radius); + ege_roundrect(x, y, w, h, radius, radius, radius, radius, pimg); } void ege_fillroundrect(float x, float y, float w, float h, float radius, PIMAGE pimg) {