From cd4b7db02dcd2aa3937bb91c9f9b63d56579b44e Mon Sep 17 00:00:00 2001 From: holorat Date: Sat, 22 Jun 2024 00:27:49 +0300 Subject: [PATCH] Reorder profiler stats according to timeline --- apps/openmw/profile.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/openmw/profile.hpp b/apps/openmw/profile.hpp index 526dfa2f00..da9128197c 100644 --- a/apps/openmw/profile.hpp +++ b/apps/openmw/profile.hpp @@ -29,6 +29,7 @@ namespace OMW { Input, Sound, + LuaSyncUpdate, State, Script, Mechanics, @@ -36,9 +37,8 @@ namespace OMW PhysicsWorker, World, Gui, - Lua, - LuaSyncUpdate, WindowManager, + Lua, Number, }; @@ -79,7 +79,7 @@ namespace OMW inline const UserStats UserStatsValue::sValue{ "Lua", "lua" }; template <> - inline const UserStats UserStatsValue::sValue{ " -Sync", "luasyncupdate" }; + inline const UserStats UserStatsValue::sValue{ "LuaSync", "luasyncupdate" }; template <> inline const UserStats UserStatsValue::sValue{ "WindowManager", "windowmanager" };