diff --git a/src/ui/flutter/lib/widgets/game_page.dart b/src/ui/flutter/lib/widgets/game_page.dart index f5826afc..c416cd62 100644 --- a/src/ui/flutter/lib/widgets/game_page.dart +++ b/src/ui/flutter/lib/widgets/game_page.dart @@ -197,7 +197,17 @@ class _GamePageState extends State { while ((Config.isAutoRestart == true || Game.shared.position.winner == Color.nobody) && Game.shared.isAiToMove()) { - changeStatus(S.of(context).thinking); + if (widget.engineType == EngineType.aiVsAi) { + String score = Game.shared.position.score[Color.black].toString() + + " : " + + Game.shared.position.score[Color.white].toString() + + " : " + + Game.shared.position.score[Color.draw].toString(); + + changeStatus(score); + } else { + changeStatus(S.of(context).thinking); + } final response = await widget.engine.search(Game.shared.position);