diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-18 02:34:16 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-18 02:34:16 +0200 |
commit | 1934d2cfc40bd9ef88c83decb970bbccc4914a15 (patch) | |
tree | e314feebd22bb1ee911bb9f4deedd3f76f15d7de /c/main.cpp | |
parent | bae51a17cc742e74172a3b9ae7c96730a7c558e8 (diff) | |
download | EpisodeBrowser-1934d2cfc40bd9ef88c83decb970bbccc4914a15.tar.gz |
Fix typo.
Diffstat (limited to 'c/main.cpp')
-rw-r--r-- | c/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. */ |