(svn r25694) -Fix (r25651): Picky GCC.

This commit is contained in:
michi_cc 2013-08-05 20:50:55 +00:00
parent b3ecfbb67a
commit 4ed08dcd60
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,7 @@ Point Layouter::GetCharPosition(const char *ch) const
for (int i = 0; i < run->getGlyphCount(); i++) {
/* Matching glyph? Return position. */
if ((size_t)run->getGlyphToCharMap()[i] == index) {
Point p = { run->getPositions()[i * 2], run->getPositions()[i * 2 + 1] };
Point p = { (int)run->getPositions()[i * 2], (int)run->getPositions()[i * 2 + 1] };
return p;
}
}