diff options
| author | XANTRONIX Development | 2022-03-10 15:29:31 -0500 | 
|---|---|---|
| committer | XANTRONIX Development | 2022-03-10 15:29:31 -0500 | 
| commit | 06d12a039c2b6d0da93caa758819c0dc45212e57 (patch) | |
| tree | b4c392628dc4305e2aad4d75319f6b42df4aee26 | |
| parent | 906c5afd82dd289ba3af285acca5b9a8b1cf8e1c (diff) | |
| download | xas-06d12a039c2b6d0da93caa758819c0dc45212e57.tar.gz xas-06d12a039c2b6d0da93caa758819c0dc45212e57.tar.bz2 xas-06d12a039c2b6d0da93caa758819c0dc45212e57.zip | |
It's really hard to keep it together
It's really hard to keep it together when you're testing this stuff on
yourself @_@
| -rw-r--r-- | src/drone.c | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/src/drone.c b/src/drone.c index a4b1496..8b47b10 100644 --- a/src/drone.c +++ b/src/drone.c @@ -271,6 +271,9 @@ static void max_speech_duration(xas_drone_chamber *chamber,                                  struct timeval *max) {      size_t i; +    max->tv_sec  = 0; +    max->tv_usec = 0; +      for (i=0; i<chamber->drone_count; i++) {          xas_drone *drone        = chamber->drones[i];          xas_bank_player *player = (xas_bank_player *)drone->obj->ctx; @@ -282,8 +285,8 @@ static void max_speech_duration(xas_drone_chamber *chamber,                                    &duration);          if (timercmp(&duration, max, >)) { -            duration.tv_sec  = max->tv_sec; -            duration.tv_usec = max->tv_usec; +            max->tv_sec  = duration.tv_sec; +            max->tv_usec = duration.tv_usec;          }      }  } | 
 
    