Parcourir la source

fix: no change

master
Daniel Ledda il y a 2 semaines
Parent
révision
4a8621940e
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +3
    -1
      app.cpp

+ 3
- 1
app.cpp Voir le fichier

@@ -256,8 +256,10 @@ int gymTrackerStatus(Arena *arena, list<string> args) {
improvement = workToday - workLastTime;
if (improvement > 0) {
fmtString = COLOR_TEXT("%S", ANSI_fg_cyan) ": %.2fkg in %.2fmin " COLOR_TEXT("+%.2fkg (+%.2f%%)\n", ANSI_fg_green);
} else {
} else if (improvement < 0) {
fmtString = COLOR_TEXT("%S", ANSI_fg_cyan) ": %.2fkg in %.2fmin " COLOR_TEXT("%.2fkg (%.2f%%)\n", ANSI_fg_red);
} else {
fmtString = COLOR_TEXT("%S", ANSI_fg_cyan) ": %.2fkg in %.2fmin " COLOR_TEXT("(no change)\n", ANSI_fg_yellow);
}
}



Chargement…
Annuler
Enregistrer