Increase the row height +2px to fix overlap

This commit is contained in:
Takumi Sueda 2022-05-05 22:57:12 +09:00
parent 0fa6074266
commit 00bcb28e49
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ static void outputDebugMessage(const wchar_t *format, ...)
va_end(args);
OutputDebugString(buffer);
ExtTextOut(GetDC(NULL), 0, row * 12, ETO_CLIPPED, &rcScreen,
ExtTextOut(GetDC(NULL), 0, row * 14, ETO_CLIPPED, &rcScreen,
buffer, wcslen(buffer), NULL);
row++;