diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 69f09bcec..6fa3325ae 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -9068,10 +9068,10 @@ void OBSBasic::CenterSelectedSceneItems(const CenterType ¢erType) 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;