From c4dbbbccc57cd7c7467e89ec1ed63974e6f3b436 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 16 Oct 2024 10:22:25 -0400 Subject: [PATCH] Revert change of tot_score and avg_score to unsigned ints. Make them ints so that comparison with other scores is ok --- src/zm_event.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zm_event.h b/src/zm_event.h index 814604216..fadb8b7a3 100644 --- a/src/zm_event.h +++ b/src/zm_event.h @@ -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;