diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-11-21 18:25:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-21 18:25:28 -0600 |
commit | dc7764f60ce5c6278a1824f47cacf47362854d0e (patch) | |
tree | 031f64de0657fbd0b09edb90d1be88958217a055 /include/text.h | |
parent | 0b59dbf2b8a38b384ec3cfbee15578d8e06e7ccc (diff) | |
parent | a900a51a595278bc5dd1fcda776de7dad21bcf11 (diff) |
Merge pull request #394 from DizzyEggg/text
DecompressGlyphTile - cleaner code
Diffstat (limited to 'include/text.h')
-rw-r--r-- | include/text.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.h b/include/text.h index 853e93e90..27a6364bb 100644 --- a/include/text.h +++ b/include/text.h @@ -229,7 +229,7 @@ u32 RenderFont(struct TextPrinter *textPrinter); void GenerateFontHalfRowLookupTable(u8 fgColor, u8 bgColor, u8 shadowColor); void SaveTextColors(u8 *fgColor, u8 *bgColor, u8 *shadowColor); void RestoreTextColors(u8 *fgColor, u8 *bgColor, u8 *shadowColor); -void DecompressGlyphTile(const u16 *src, void *dest_); +void DecompressGlyphTile(const void *src_, void *dest_); u8 GetLastTextColor(u8 colorType); void CopyGlyphToWindow(struct TextPrinter *x); void ClearTextSpan(struct TextPrinter *textPrinter, u32 width); |