We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e4040 commit 34754b8Copy full SHA for 34754b8
src/wingui.cpp
@@ -2320,7 +2320,7 @@ static void DisplayGameReportText(
2320
else
2321
{
2322
message = CHESS_PROGRAM_NAME " - White wins";
2323
- brief = "White wins";
+ brief = "1-0";
2324
}
2325
break;
2326
@@ -2348,13 +2348,13 @@ static void DisplayGameReportText(
2348
2349
2350
message = CHESS_PROGRAM_NAME " - Black wins";
2351
- brief = "Black wins";
+ brief = "0-1";
2352
2353
2354
2355
case SIDE_NEITHER:
2356
message = CHESS_PROGRAM_NAME " - This game is a draw";
2357
- brief = "Drawn game";
+ brief = "\xbd-\xbd"; // 1/2 - 1/2
2358
2359
2360
default:
0 commit comments