Revert change of tot_score and avg_score to unsigned ints. Make them ints so that comparison with other scores is ok

pull/4202/head
Isaac Connor 2024-10-16 10:22:25 -04:00
parent a89160ff2d
commit c4dbbbccc5
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ class Event {
int frames;
int alarm_frames;
bool alarm_frame_written;
unsigned int tot_score;
unsigned int max_score;
int tot_score;
int max_score;
std::string path;
std::string snapshot_file;
bool snapshot_file_written;