From 0144c32c5308213543ea9be1dcf8284506e69227 Mon Sep 17 00:00:00 2001 From: Briggs Baltzell Date: Mon, 9 Feb 2026 09:26:09 -0600 Subject: [PATCH] Replace hardcoded cloth type with `MENU_CLOTH_TYPE_2` constant in `d_menu_window`. --- src/d/d_menu_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d/d_menu_window.cpp b/src/d/d_menu_window.cpp index 5e1709b68..8655510fc 100644 --- a/src/d/d_menu_window.cpp +++ b/src/d/d_menu_window.cpp @@ -142,7 +142,7 @@ void dMs_clothOnly_create(sub_ms_screen_class*) { JUT_ASSERT(2744, cloth_c != NULL); cloth_c->setArchive(arc); - cloth_c->setClothType(2); + cloth_c->setClothType(MENU_CLOTH_TYPE_2); cloth_c->init(); dMs_cloth_c = new dDlst_MENU_CLOTH_c();