mirror of
https://github.com/jorio/Pomme.git
synced 2024-11-23 06:32:14 +00:00
DrawChar: Advance pen position even if offscreen
This commit is contained in:
parent
d83a70ea70
commit
fd1cd2cf81
@ -655,6 +655,9 @@ void DrawChar(char c)
|
||||
dstRect.right = dstRect.left + SysFont::widthBits;
|
||||
dstRect.bottom = dstRect.top + SysFont::rows;
|
||||
|
||||
// Advance pen position
|
||||
penX += glyph.width;
|
||||
|
||||
Rect clippedDstRect = dstRect;
|
||||
if (!IntersectRects(&curPort->port.portRect, &clippedDstRect))
|
||||
{
|
||||
@ -688,6 +691,4 @@ void DrawChar(char c)
|
||||
|
||||
dst2 += curPort->pixels.width;
|
||||
}
|
||||
|
||||
penX += glyph.width;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user