From: Amélia Coutard-Sander Date: Wed, 7 Jan 2026 13:38:53 +0000 (+0100) Subject: Démarrage en mode normal, pas en mode sélection X-Git-Url: https://git.f4mnq.fr/?a=commitdiff_plain;h=9db30cbbf24307671ef149b6335f59167f7577c6;p=cells.git Démarrage en mode normal, pas en mode sélection --- diff --git a/bin/main.ml b/bin/main.ml index 4250a8d..ebb1410 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -33,4 +33,4 @@ let () = Graphics.open_graph ""; Graphics.set_window_title "Automaton"; Graphics.auto_synchronize false; - try run (module Modes.AutoSelector) () with Graphics.Graphic_failure _ -> () + try run (module Modes.Normal) () with Graphics.Graphic_failure _ -> () diff --git a/bin/modes.mli b/bin/modes.mli index 8186c82..b84324c 100644 --- a/bin/modes.mli +++ b/bin/modes.mli @@ -37,6 +37,6 @@ module type Mode = ModeAux.S module Command : Mode -module Normal : Mode +module Normal : Mode with type initer = unit -module AutoSelector : Mode with type initer = unit +module AutoSelector : Mode