fix: window remove flags function used | to remove flag instead of &

This commit is contained in:
2026-04-17 11:40:56 +02:00
parent e9808fb47f
commit 31f57eddf7

View File

@@ -185,7 +185,7 @@ void Window::RemoveFlags(std::span<const SDL_WindowFlags> flags) {
break;
}
m_Flags |= flag;
m_Flags &= flag;
}
}