Переглянути джерело

Fixes using init values when constructing panels.

(valgrind)  When creating the panels, I didn't
init hand and total_hands value.
Steve Thielemann 3 роки тому
батько
коміт
39ae306986
1 змінених файлів з 3 додано та 0 видалено
  1. 3 0
      play.cpp

+ 3 - 0
play.cpp

@@ -66,6 +66,9 @@ PlayCards::PlayCards(door::Door &d, DBData &dbd, std::mt19937 &r)
    * for today.
    */
 
+  hand = 0;
+  total_hands = 0;
+
   spaceAceTriPeaks = make_tripeaks();
   score_panel = make_score_panel();
   streak_panel = make_streak_panel();