mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-12 00:14:20 +00:00
Fixed framerate counter averaging buffer size (shouldn't have been included in previous commit)
This commit is contained in:
parent
26d2b361d1
commit
10b4fa44c1
1 changed files with 1 additions and 1 deletions
|
|
@ -1314,7 +1314,7 @@ struct ImGuiState
|
|||
int LogAutoExpandMaxDepth;
|
||||
|
||||
// Misc
|
||||
float FramerateSecPerFrame[10]; // calculate estimate of framerate for user
|
||||
float FramerateSecPerFrame[120]; // calculate estimate of framerate for user
|
||||
int FramerateSecPerFrameIdx;
|
||||
float FramerateSecPerFrameAccum;
|
||||
char TempBuffer[1024*3+1]; // temporary text buffer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue