From 2c2e21503f1d648d53aa88b1c9b522e1f9663155 Mon Sep 17 00:00:00 2001 From: IoIxD Date: Sun, 19 Jul 2026 20:58:32 -0700 Subject: [PATCH] MwFALMwFALSE -> MwFALSE --- src/text/gdi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text/gdi.c b/src/text/gdi.c index 457b4dc20..e0f19bf28 100644 --- a/src/text/gdi.c +++ b/src/text/gdi.c @@ -28,7 +28,7 @@ static int GDI_MwDrawText(MwWidget handle, MwFLFont ttf, MwPoint* point, const c tw = MwTextWidth(handle, ttf, text); th = MwTextHeight(handle, ttf, text); - if(handle->lowlevel->common.type == MwLLBackendGDI && MwGetInteger(handle, MwNmodernLook) == MwFALMwFALSE) { + if(handle->lowlevel->common.type == MwLLBackendGDI && MwGetInteger(handle, MwNmodernLook) == MwFALSE) { HFONT old_font = SelectObject(handle->lowlevel->gdi.hDC, ttf->font); int old_bkmode = SetBkMode(handle->lowlevel->gdi.hDC, TRANSPARENT); COLORREF old_color = SetTextColor(handle->lowlevel->gdi.hDC, color->gdi.color);