Add command to show fps in titlebar

This commit is contained in:
illusion98 2019-09-09 08:38:27 -05:00 committed by illusion
parent 7683e0847c
commit 2651a60712
1 changed files with 8 additions and 4 deletions

View File

@ -14,11 +14,13 @@
#include "third_party/imgui/imgui.h"
#include "xenia/base/assert.h"
#include "xenia/base/clock.h"
#include "xenia/base/cvar.h"
#include "xenia/base/logging.h"
#include "xenia/ui/imgui_drawer.h"
#include "xenia/base/profiling.h"
DEFINE_bool(fps_titlebar, true, "Show FPS in titlebar", "General");
namespace xe {
namespace ui {
@ -205,9 +207,11 @@ void Window::OnPaint(UIEvent* e) {
#endif
title_fps_text_ = base_title_;
title_fps_text_ += " | ";
title_fps_text_ += std::to_string(game_fps_);
title_fps_text_ += " FPS";
if (cvars::fps_titlebar) {
title_fps_text_ += " | ";
title_fps_text_ += std::to_string(game_fps_);
title_fps_text_ += " FPS";
}
set_title(title_fps_text_, false);
osd_fps_text_ = std::to_string(game_fps_);