Feb. 7, 2026
10:45 a.m.
Huw Davies (@huw) commented about dlls/win32u/font.c:
{ const char * const *defaults;
- if ((pitch_and_family & FIXED_PITCH) || (pitch_and_family & 0xf0) == FF_MODERN) + if ((pitch_and_family & FIXED_PITCH) || (pitch_and_family & FF_MODERN) == FF_MODERN)
This doesn't look right. The `FF_` constants are not bit-fields. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9514#note_129013