fix build failure for x64 - close #462

This commit is contained in:
Vadim Lopatin 2017-09-27 18:44:29 +03:00
parent b7c0f22169
commit e60be3ec1b
2 changed files with 2 additions and 2 deletions

View File

@ -319,7 +319,7 @@ class FreeTypeFontFile {
&delta); /* target vector */
const RSHIFT = 0;
if ( !error )
return (delta.x) >> RSHIFT;
return cast(int)((delta.x) >> RSHIFT);
return 0;
}
}

View File

@ -1 +1 @@
v0.9.151
v0.9.152