Ditto for frame counts.

This commit is contained in:
Bartosz Taudul 2019-03-26 20:19:56 +01:00
parent 021368fb59
commit fe675b91be

View File

@ -8519,9 +8519,7 @@ void View::DrawInfo()
ImGui::Text( "%s - %s", TimeToString( t0 ), TimeToString( t1 ) );
ImGui::SameLine();
ImGui::TextDisabled( "(%s FPS - %s FPS)", RealToString( round( 1000000000.0 / t0 ), true ), RealToString( round( 1000000000.0 / t1 ), true ) );
TextDisabledUnformatted( "Count:" );
ImGui::SameLine();
ImGui::Text( "%" PRIu64, bins[bin] );
TextFocused( "Count:", RealToString( bins[bin], true ) );
ImGui::EndTooltip();
}
}