mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r25694) -Fix (r25651): Picky GCC.
This commit is contained in:
parent
03e8f595a9
commit
4142cde953
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user