Fix engine services before exit event order

This commit is contained in:
Wojtek Figat
2025-12-29 22:24:55 +01:00
parent 329ea1c9b4
commit 1bdb577b60

View File

@@ -26,7 +26,7 @@ static bool CompareEngineServices(EngineService* const& a, EngineService* const&
{ \
ZoneScoped; \
auto& services = GetServices(); \
for (int32 i = 0; i < services.Count(); i++) \
for (int32 i = services.Count() - 1; i >= 0; i--) \
services[i]->name(); \
}