From 4142cde953a75806c96bd7b478629c3e6991c848 Mon Sep 17 00:00:00 2001 From: michi_cc Date: Mon, 5 Aug 2013 20:50:55 +0000 Subject: [PATCH] (svn r25694) -Fix (r25651): Picky GCC. --- src/gfx_layout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gfx_layout.cpp b/src/gfx_layout.cpp index 4d1d382d6c..bcd5add367 100644 --- a/src/gfx_layout.cpp +++ b/src/gfx_layout.cpp @@ -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; } }