A Nix-friendly SQLite-enhanced fork of Flitter, a speedrunning split timer for Unix-style terminals
Revision | f88028cbc6ab92617d5e3f5cb451953277565de1 (tree) |
---|---|
Time | 2022-12-19 10:03:13 |
Author | Corbin <cds@corb...> |
Commiter | Corbin |
Fix thinko.
@@ -56,7 +56,7 @@ let game_of_sexp sexp = | ||
56 | 56 | else game |
57 | 57 | |
58 | 58 | let load_golds parsed_game = |
59 | - if Int.equal (Array.length parsed_game.golds) 0 then | |
59 | + if Array.length parsed_game.golds = 0 then | |
60 | 60 | Array.map parsed_game.split_names ~f:(fun name -> |
61 | 61 | { Timer_types.title = name; duration = None }) |
62 | 62 | else |