From 66bbfada5f8552a93e8754cb3c53b67ed114506b Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 10 Oct 2018 20:43:42 +0200 Subject: [PATCH] wineconsole: Set a proper default for the font weight. Signed-off-by: Alexandre Julliard --- programs/wineconsole/registry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wineconsole/registry.c b/programs/wineconsole/registry.c index 92c53a7ca49..9e7a7b610eb 100644 --- a/programs/wineconsole/registry.c +++ b/programs/wineconsole/registry.c @@ -219,7 +219,7 @@ void WINECON_RegLoad(const WCHAR* appname, struct config_data* cfg) memset(cfg->face_name, 0, sizeof(cfg->face_name)); cfg->cell_height = 12; cfg->cell_width = 8; - cfg->font_weight = 0; + cfg->font_weight = FW_NORMAL; cfg->history_size = 50; cfg->history_nodup = 0; cfg->insert_mode = 1; -- 2.11.4.GIT