summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gfx_layout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx_layout.cpp b/src/gfx_layout.cpp
index 4d1d382d6..bcd5add36 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;
}
}