1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-19 08:41:35 +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 gugus/gus
guidoj guidoj
Haoda Wang (h313) Haoda Wang (h313)
holorat
hristoast hristoast
Internecine Internecine
Ivan Beloborodov (myrix) Ivan Beloborodov (myrix)

View file

@ -180,6 +180,7 @@
Bug #7993: Cannot load Bloodmoon without Tribunal Bug #7993: Cannot load Bloodmoon without Tribunal
Bug #7997: Can toggle perspective when paralyzed Bug #7997: Can toggle perspective when paralyzed
Bug #8002: Portable light sources held by creatures do not emit lighting 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 #8018: Potion effects should never explode and always apply on self
Bug #8021: Player's scale doesn't reset when starting a new game Bug #8021: Player's scale doesn't reset when starting a new game
Feature #1415: Infinite fall failsafe Feature #1415: Infinite fall failsafe

View file

@ -29,6 +29,7 @@ namespace OMW
{ {
Input, Input,
Sound, Sound,
LuaSyncUpdate,
State, State,
Script, Script,
Mechanics, Mechanics,
@ -36,9 +37,8 @@ namespace OMW
PhysicsWorker, PhysicsWorker,
World, World,
Gui, Gui,
Lua,
LuaSyncUpdate,
WindowManager, WindowManager,
Lua,
Number, Number,
}; };
@ -79,7 +79,7 @@ namespace OMW
inline const UserStats UserStatsValue<UserStatsType::Lua>::sValue{ "Lua", "lua" }; inline const UserStats UserStatsValue<UserStatsType::Lua>::sValue{ "Lua", "lua" };
template <> template <>
inline const UserStats UserStatsValue<UserStatsType::LuaSyncUpdate>::sValue{ " -Sync", "luasyncupdate" }; inline const UserStats UserStatsValue<UserStatsType::LuaSyncUpdate>::sValue{ "LuaSync", "luasyncupdate" };
template <> template <>
inline const UserStats UserStatsValue<UserStatsType::WindowManager>::sValue{ "WindowManager", "windowmanager" }; inline const UserStats UserStatsValue<UserStatsType::WindowManager>::sValue{ "WindowManager", "windowmanager" };