correct some inlining

This commit is contained in:
philippe44
2020-02-22 19:35:16 -08:00
parent a3d0b67670
commit 94fecbdd47
5 changed files with 40 additions and 53 deletions

View File

@@ -89,7 +89,7 @@ void GDS_FontDrawChar( struct GDS_Device* Device, char Character, int x, int y,
YBit = ( i + OffsetY ) & 0x07;
if ( GlyphData[ YByte ] & BIT( YBit ) ) {
Device->DrawPixel( Device, x, y, Color );
GDS_DrawPixel( Device, x, y, Color );
}
}