UI: Remove min and max macro workaround

This commit is contained in:
Norihiro Kamae
2024-08-02 15:20:14 +09:00
committed by Lain
parent edf753b31e
commit 58a8d79be1

View File

@@ -9068,10 +9068,10 @@ void OBSBasic::CenterSelectedSceneItems(const CenterType &centerType)
GetItemBox(item, tl, br);
left = (std::min)(tl.x, left);
top = (std::min)(tl.y, top);
right = (std::max)(br.x, right);
bottom = (std::max)(br.y, bottom);
left = std::min(tl.x, left);
top = std::min(tl.y, top);
right = std::max(br.x, right);
bottom = std::max(br.y, bottom);
}
center.x = (right + left) / 2.0f;