patch 7.4.1074
Problem: Warning from VX2015 compiler.
Solution: Add a type cast. (Mike Williams)
diff --git a/src/gui_dwrite.cpp b/src/gui_dwrite.cpp
index d4c43a3..08b81c4 100644
--- a/src/gui_dwrite.cpp
+++ b/src/gui_dwrite.cpp
@@ -686,7 +686,7 @@
if (SUCCEEDED(hr))
{
- DWRITE_TEXT_RANGE textRange = { 0, len };
+ DWRITE_TEXT_RANGE textRange = { 0, (UINT32)len };
textLayout->SetFontWeight(mFontWeight, textRange);
textLayout->SetFontStyle(mFontStyle, textRange);
}
diff --git a/src/version.c b/src/version.c
index 46e5aa7..d1b5124 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1074,
+/**/
1073,
/**/
1072,