aboutsummaryrefslogtreecommitdiff
path: root/c/main.cpp
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-18 02:34:16 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-18 02:34:16 +0200
commit1934d2cfc40bd9ef88c83decb970bbccc4914a15 (patch)
treee314feebd22bb1ee911bb9f4deedd3f76f15d7de /c/main.cpp
parentbae51a17cc742e74172a3b9ae7c96730a7c558e8 (diff)
downloadEpisodeBrowser-1934d2cfc40bd9ef88c83decb970bbccc4914a15.tar.gz
Fix typo.
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. */