Skip to content

Commit

Permalink
Add color description for first/second
Browse files Browse the repository at this point in the history
Signed-off-by: yjf2002ghty <[email protected]>
  • Loading branch information
yjf2002ghty committed Nov 23, 2024
1 parent a3c72ad commit 6ab294b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/html/advanced.html
Original file line number Diff line number Diff line change
Expand Up @@ -3760,7 +3760,7 @@
}
engine_match_played_game_count++;
document.getElementById("enginematchinfo").innerText =
`Games played: ${engine_match_played_game_count} | Total games to play: ${engine_match_total_game_count} | First engine wins: ${engine_match_white_wins} | Second engine wins: ${engine_match_black_wins} | Draws: ${engine_match_draws}`;
`Games played: ${engine_match_played_game_count} | Total games to play: ${engine_match_total_game_count} | First engine (WHITE) wins: ${engine_match_white_wins} | Second engine (BLACK) wins: ${engine_match_black_wins} | Draws: ${engine_match_draws}`;
if (fgs) {
let info = fgs.GetCurrentGameInformation(window.ffishlib);
engine_match_game_list.push(
Expand All @@ -3769,10 +3769,10 @@
info.FEN,
info.UCIMoves,
info.Result,
info.Event,
"Fairy-Stockfish Playground engine match",
info.Site,
info.Date,
1,
engine_match_played_game_count,
info.FirstPlayerName,
info.SecondPlayerName,
0,
Expand Down

0 comments on commit 6ab294b

Please sign in to comment.