mirror of https://github.com/buggins/dlangui.git
fix build failure for x64 - close #462
This commit is contained in:
parent
b7c0f22169
commit
e60be3ec1b
|
@ -319,7 +319,7 @@ class FreeTypeFontFile {
|
||||||
&delta); /* target vector */
|
&delta); /* target vector */
|
||||||
const RSHIFT = 0;
|
const RSHIFT = 0;
|
||||||
if ( !error )
|
if ( !error )
|
||||||
return (delta.x) >> RSHIFT;
|
return cast(int)((delta.x) >> RSHIFT);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.9.151
|
v0.9.152
|
Loading…
Reference in New Issue