chiark / gitweb /
Replace a TCHAR with a WCHAR.
[sgt-puzzles.git] / windows.c
index fde1e6b5c02517affdd89a783f86e22d9a00f209..ba657c0d33ad2089aed6604b77086a29cd4544df 100644 (file)
--- a/windows.c
+++ b/windows.c
@@ -608,7 +608,7 @@ static void win_draw_text(void *handle, int x, int y, int fonttype,
        HFONT oldfont;
        TEXTMETRIC tm;
        SIZE size;
-       TCHAR wText[256];
+       WCHAR wText[256];
        MultiByteToWideChar (CP_UTF8, 0, text, -1, wText, 256);
 
        oldfont = SelectObject(fe->hdc, fe->fonts[i].font);