diff --git a/src/st_widgets.c b/src/st_widgets.c index 7849d067..5abdec1d 100644 --- a/src/st_widgets.c +++ b/src/st_widgets.c @@ -820,7 +820,8 @@ static void UpdateStTime(sbe_widget_t *widget, player_t *player) if (time_scale != 100) { offset += - M_snprintf(string, sizeof(string), BLUE_S "%d%% ", time_scale); + M_snprintf(string, sizeof(string), "%s%d%% ", + (widget->font == stcfnt) ? BLUE2_S : BLUE1_S, time_scale); } if (totalleveltimes) diff --git a/src/v_video.h b/src/v_video.h index be1e851c..eb879ce5 100644 --- a/src/v_video.h +++ b/src/v_video.h @@ -93,7 +93,8 @@ typedef enum #define BROWN_S "\x1b\x34" #define GOLD_S "\x1b\x35" #define RED_S "\x1b\x36" -#define BLUE_S "\x1b\x37" +#define BLUE1_S "\x1b\x37" +#define BLUE2_S "\x1b\x3a" // jff 1/16/98 end palette color range additions