From 242e154f09cc01b72990009a8e4e85c4a233858c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Tue, 27 Feb 2018 16:31:23 +0100 Subject: [PATCH] Sdk/World: Fix world movement not moving profiler status --- SDK/include/NDK/World.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDK/include/NDK/World.inl b/SDK/include/NDK/World.inl index 32903502d..a9d2cc8b8 100644 --- a/SDK/include/NDK/World.inl +++ b/SDK/include/NDK/World.inl @@ -361,7 +361,7 @@ namespace Ndk m_orderedSystems = std::move(world.m_orderedSystems); m_orderedSystemsUpdated = world.m_orderedSystemsUpdated; m_profilerData = std::move(world.m_profilerData); - m_isProfilerEnabled = m_isProfilerEnabled; + m_isProfilerEnabled = world.m_isProfilerEnabled; m_entities = std::move(world.m_entities); for (EntityBlock& block : m_entities)