GUI side of microseconds_t => int64_t

This commit is contained in:
Paul Davis 2021-06-28 14:47:39 -06:00
parent b20a541d7e
commit f8a5d45b7a
3 changed files with 8 additions and 8 deletions

View file

@ -125,8 +125,8 @@ DspStatisticsGUI::stop_updating ()
void
DspStatisticsGUI::update ()
{
uint64_t min = 0;
uint64_t max = 0;
PBD::microseconds_t min = 0;
PBD::microseconds_t max = 0;
double avg = 0.;
double dev = 0.;
char buf[64];
@ -205,8 +205,8 @@ DspStatisticsGUI::update ()
if (_session) {
uint64_t smin = 0;
uint64_t smax = 0;
PBD::microseconds_t smin = 0;
PBD::microseconds_t smax = 0;
double savg = 0.;
double sdev = 0.;