From d7393015f5162ad56d1bef8f2a1ea38f4cff6c9b Mon Sep 17 00:00:00 2001 From: Reppan <72985260+Jepvid@users.noreply.github.com> Date: Thu, 18 Jun 2026 05:07:25 +0200 Subject: [PATCH] Fix Growdirection (#6761) --- soh/soh/Notification/Notification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Notification/Notification.cpp b/soh/soh/Notification/Notification.cpp index a0ddd5b611..b101e2e753 100644 --- a/soh/soh/Notification/Notification.cpp +++ b/soh/soh/Notification/Notification.cpp @@ -52,7 +52,7 @@ void Window::Draw() { for (int index = 0; index < notifications.size(); ++index) { auto& notification = notifications[index]; - int inverseIndex = -ABS(index - (static_cast(notifications.size()) - 1)); + int inverseIndex = ABS(index - (static_cast(notifications.size()) - 1)); ImGui::SetNextWindowViewport(vp->ID); if (notification.remainingTime < 4.0f) {