Revert change of tot_score and avg_score to unsigned ints. Make them ints so that comparison with other scores is ok
parent
a89160ff2d
commit
c4dbbbccc5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue