Skip to content
Snippets Groups Projects
Commit daed8cd9 authored by erwan's avatar erwan
Browse files

Fix: the round number was wrong when going back to the first event

parent 74459c11
No related branches found
No related tags found
No related merge requests found
Pipeline #47951 passed
...@@ -10,7 +10,7 @@ Look at the sasa/test/*/my-rdbg-commands.ml files for examples ...@@ -10,7 +10,7 @@ Look at the sasa/test/*/my-rdbg-commands.ml files for examples
(* Dealing with rounds *) (* Dealing with rounds *)
let roundnb = ref 1 let roundnb = ref 1
let roundtbl = Hashtbl.create 1;; let roundtbl = Hashtbl.create 1;;
let _ = Hashtbl.add roundtbl 1 (1,true);;
(**********************************************************************) (**********************************************************************)
...@@ -133,7 +133,7 @@ let (round : RdbgEvent.t -> bool) = ...@@ -133,7 +133,7 @@ let (round : RdbgEvent.t -> bool) =
let update_round_nb e = let update_round_nb e =
match Hashtbl.find_opt roundtbl e.nb with match Hashtbl.find_opt roundtbl e.nb with
| None -> roundnb := 1 | None -> ()
| Some (n,_) -> roundnb := n | Some (n,_) -> roundnb := n
(* go to next and previous rounds *) (* go to next and previous rounds *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment