From a822381ed7a17106604b8afb7d51feadd45e4a6d Mon Sep 17 00:00:00 2001 From: GamesTrap Date: Sun, 19 Nov 2023 04:50:20 +0100 Subject: [PATCH] Win32 Fixed typo in font name --- src/win32_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32_window.c b/src/win32_window.c index 1f4e2e85..e70383a2 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -1814,7 +1814,7 @@ static HICON GenerateTextBadgeIcon(HWND hWnd, WCHAR* text) //Create and set font badgeData.hFont = CreateFont(fontSize, 0, 0, 0, weight, FALSE, FALSE, FALSE, 0, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, ANTIALIASED_QUALITY, - DEFAULT_PITCH | FF_DONTCARE, TEXT("Segeo UI")); + DEFAULT_PITCH | FF_DONTCARE, TEXT("Segoe UI")); if(!badgeData.hFont) { CleanupBadgeData(hWnd, &badgeData);