1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 15:23:01 +01:00

Ignore dead windows to determine insertion position

This commit is contained in:
ζeh Matt
2023-07-18 23:46:05 +03:00
parent b5f7d4ee2c
commit 2d1c361cb0

View File

@@ -244,6 +244,8 @@ WindowBase* WindowCreate(
{
for (auto it = g_window_list.begin(); it != g_window_list.end(); it++)
{
if ((*it)->flags & WF_DEAD)
continue;
if (!((*it)->flags & WF_STICK_TO_BACK))
{
itDestPos = it;
@@ -254,6 +256,8 @@ WindowBase* WindowCreate(
{
for (auto it = g_window_list.rbegin(); it != g_window_list.rend(); it++)
{
if ((*it)->flags & WF_DEAD)
continue;
if (!((*it)->flags & WF_STICK_TO_FRONT))
{
itDestPos = it.base();