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:
commit
b1de8ed720
3 changed files with 5 additions and 3 deletions
|
@ -98,6 +98,7 @@ Programmers
|
|||
gugus/gus
|
||||
guidoj
|
||||
Haoda Wang (h313)
|
||||
holorat
|
||||
hristoast
|
||||
Internecine
|
||||
Ivan Beloborodov (myrix)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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" };
|
||||
|
|
Loading…
Reference in a new issue