Fix some x64 type conversion warnings.

This commit is contained in:
Unknown W. Brackets
2013-04-19 08:41:31 -07:00
parent eab2f8dca2
commit 7a7e5ccb0b
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -966,7 +966,7 @@ namespace MainWindow
BitBlt(hbm, hdc, 0, 0, rc.right - rc.left, rc.bottom - rc.top, rc.left, rc.top);
char str[11];
GetWindowTextA(hEdit, str, 10);
DrawTextA(hdc, str, strlen(str), &clientrc, DT_CENTER|DT_SINGLELINE);
DrawTextA(hdc, str, (int)strlen(str), &clientrc, DT_CENTER|DT_SINGLELINE);
return (LRESULT)GetStockObject(NULL_BRUSH);
}
case WM_COMMAND: