From 29516f2cc454d42d75c84304b744c7a1b29a9ebd Mon Sep 17 00:00:00 2001 From: Guillaume Piolat Date: Tue, 4 Feb 2025 18:07:43 +0100 Subject: [PATCH] Fix abtest build --- tools/abtest/source/main.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/abtest/source/main.d b/tools/abtest/source/main.d index a4971713..1e4c7b4b 100644 --- a/tools/abtest/source/main.d +++ b/tools/abtest/source/main.d @@ -326,8 +326,8 @@ int main(string[] args) // Display scores cwritefln("*** TOTAL RESULTS".white); - cwritefln(" => %s got %s votes", inputFileA.lcyan, to!string(scoreA).yellow); - cwritefln(" => %s got %s votes", inputFileB.lcyan, to!string(scoreB).yellow); + cwritefln(" => %s got %s votes", inputFileA.lcyan, to!string(scoreA).yellow); + cwritefln(" => %s got %s votes", inputFileB.lcyan, to!string(scoreB).yellow); cwriteln; cwritefln("*** DETAILS".white); @@ -338,7 +338,7 @@ int main(string[] args) if (choiceQuestion[question] == 1.0f) result = inputFileB.lcyan; if (choiceQuestion[question] == 0.5f) result = "draw".yellow; if (isNaN(choiceQuestion[question])) result = "skipped".lred; - cwritefln(" %60s => %s", questions[question], result); + cwritefln(" %60s => %s", questions[question], result); } cwriteln;