From 0d6e3e82985e1f14cd3da3fb502fa8e963548559 Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 23 Aug 2023 23:08:41 +0200 Subject: [PATCH] Dump outline color for IW4 menus --- src/ObjWriting/Game/IW4/Menu/MenuDumperIW4.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ObjWriting/Game/IW4/Menu/MenuDumperIW4.cpp b/src/ObjWriting/Game/IW4/Menu/MenuDumperIW4.cpp index 3f37fa0b..a24789ef 100644 --- a/src/ObjWriting/Game/IW4/Menu/MenuDumperIW4.cpp +++ b/src/ObjWriting/Game/IW4/Menu/MenuDumperIW4.cpp @@ -770,6 +770,7 @@ void MenuDumper::WriteMenuData(const menuDef_t* menu) WriteColorProperty("forecolor", menu->window.foreColor, COLOR_1111); WriteColorProperty("bordercolor", menu->window.borderColor, COLOR_0000); WriteColorProperty("focuscolor", menu->focusColor, COLOR_0000); + WriteColorProperty("outlinecolor", menu->window.outlineColor, COLOR_0000); WriteMaterialProperty("background", menu->window.background); WriteIntProperty("ownerdraw", menu->window.ownerDraw, 0); WriteFlagsProperty("ownerdrawFlag", menu->window.ownerDrawFlags);