From 562756a306f400ab406c04500d64713aef474c95 Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Tue, 17 Feb 2026 00:23:53 +0000 Subject: [PATCH] Update guiBitmapCtrl.cpp --- Engine/source/gui/controls/guiBitmapCtrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/gui/controls/guiBitmapCtrl.cpp b/Engine/source/gui/controls/guiBitmapCtrl.cpp index 98a9232f2..e572233f0 100644 --- a/Engine/source/gui/controls/guiBitmapCtrl.cpp +++ b/Engine/source/gui/controls/guiBitmapCtrl.cpp @@ -89,7 +89,7 @@ void GuiBitmapCtrl::initPersistFields() INITPERSISTFIELD_IMAGEASSET(Bitmap, GuiBitmapCtrl, "The bitmap to render in this BitmapCtrl.") - addField("color", TypeColorI, Offset(mColor, GuiBitmapCtrl), "color mul"); + addField("color", TypeColorI, Offset(mColor, GuiBitmapCtrl), "color mul"); addField("wrap", TypeBool, Offset(mWrap, GuiBitmapCtrl), "If true, the bitmap is tiled inside the control rather than stretched to fit."); addField("drawMode", TYPEID(), Offset(mDrawMode, GuiBitmapCtrl), "Sets the mode to draw this bitmap in this control (wrap forces Tile mode)."); addField("filterType", TYPEID(), Offset(mFilterType, GuiBitmapCtrl), "Sets the bitmap texture filter mode.");