diff --git a/config.toml b/config.toml index c28f1d4..23284dc 100644 --- a/config.toml +++ b/config.toml @@ -2,7 +2,7 @@ fps_counter = false audio_offset = 0 visual_offset = 0 -language = "ja" +language = "en" timer_frozen = true judge_counter = false nijiiro_notes = false diff --git a/scenes/game.py b/scenes/game.py index c4525af..b6bacb0 100644 --- a/scenes/game.py +++ b/scenes/game.py @@ -171,7 +171,7 @@ class GameScreen(Screen): existing_score = result[0] if result is not None else None existing_crown = result[1] if result is not None and len(result) > 1 and result[1] is not None else 0 crown = Crown.NONE - if session_data.result_data.bad and session_data.result_data.ok == 0: + if session_data.result_data.bad == 0 and session_data.result_data.ok == 0: crown = Crown.DFC elif session_data.result_data.bad == 0: crown = Crown.FC