1
0
mirror of synced 2025-01-26 16:23:44 +01:00
ImHex/plugins/builtin/source/content/footer_items.cpp

18 lines
402 B
C++

#include <hex/plugin.hpp>
namespace hex::plugin::builtin {
void addFooterItems() {
ContentRegistry::Interface::addFooterItem([] {
static float framerate = 0;
if (ImGui::HasSecondPassed()) {
framerate = ImGui::GetIO().Framerate;
}
ImGui::TextUnformatted(hex::format("FPS {0:.2f}", framerate).c_str());
});
}
}