• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A Nix-friendly SQLite-enhanced fork of Flitter, a speedrunning split timer for Unix-style terminals


Commit MetaInfo

Revisionf88028cbc6ab92617d5e3f5cb451953277565de1 (tree)
Time2022-12-19 10:03:13
AuthorCorbin <cds@corb...>
CommiterCorbin

Log Message

Fix thinko.

Change Summary

Incremental Difference

--- a/src/loadsave.ml
+++ b/src/loadsave.ml
@@ -56,7 +56,7 @@ let game_of_sexp sexp =
5656 else game
5757
5858 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
6060 Array.map parsed_game.split_names ~f:(fun name ->
6161 { Timer_types.title = name; duration = None })
6262 else