aboutsummaryrefslogtreecommitdiff
path: root/c/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c/main.cpp')
-rw-r--r--c/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/main.cpp b/c/main.cpp
index 68fe4b3..24fc19f 100644
--- a/c/main.cpp
+++ b/c/main.cpp
@@ -21,7 +21,7 @@ int g_iDPI = 96;
/* Fonts. */
HFONT g_hfNormal;
-HFONT g_fBold;
+HFONT g_hfBold;
/* Menus. */
HMENU g_hPopupMenu;
@@ -171,7 +171,7 @@ static LRESULT CALLBACK CBTProc(const int nCode, const WPARAM wParam, const LPAR
g_hfNormal = static_cast<HFONT>(GetStockObject(DEFAULT_GUI_FONT));
GetObject(g_hfNormal, sizeof(LOGFONT), &lf);
lf.lfWeight = FW_BOLD;
- g_fBold = CreateFontIndirect(&lf);
+ g_hfBold = CreateFontIndirect(&lf);
/* Get DPI. */