Increase warnings in Windows and fix most of them (#5858)

/W3
This commit is contained in:
Pepe20129
2026-06-11 17:05:33 +02:00
committed by GitHub
parent 7c42a63ceb
commit 8470f41c29
68 changed files with 360 additions and 312 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ void Window::Draw() {
for (int index = 0; index < notifications.size(); ++index) {
auto& notification = notifications[index];
int inverseIndex = -ABS(index - (notifications.size() - 1));
int inverseIndex = -ABS(index - (static_cast<int>(notifications.size()) - 1));
ImGui::SetNextWindowViewport(vp->ID);
if (notification.remainingTime < 4.0f) {