1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-01 10:41:31 +00:00

Merge branch 'profilersort' into 'master'

Reorder F3 profiler stats according to timeline

Closes #8005

See merge request OpenMW/openmw!4196
This commit is contained in:
psi29a 2024-06-29 09:21:48 +00:00
commit b1de8ed720
3 changed files with 5 additions and 3 deletions

View file

@ -98,6 +98,7 @@ Programmers
gugus/gus
guidoj
Haoda Wang (h313)
holorat
hristoast
Internecine
Ivan Beloborodov (myrix)

View file

@ -180,6 +180,7 @@
Bug #7993: Cannot load Bloodmoon without Tribunal
Bug #7997: Can toggle perspective when paralyzed
Bug #8002: Portable light sources held by creatures do not emit lighting
Bug #8005: F3 stats bars are sorted not according to their place in the timeline
Bug #8018: Potion effects should never explode and always apply on self
Bug #8021: Player's scale doesn't reset when starting a new game
Feature #1415: Infinite fall failsafe

View file

@ -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<UserStatsType::Lua>::sValue{ "Lua", "lua" };
template <>
inline const UserStats UserStatsValue<UserStatsType::LuaSyncUpdate>::sValue{ " -Sync", "luasyncupdate" };
inline const UserStats UserStatsValue<UserStatsType::LuaSyncUpdate>::sValue{ "LuaSync", "luasyncupdate" };
template <>
inline const UserStats UserStatsValue<UserStatsType::WindowManager>::sValue{ "WindowManager", "windowmanager" };