| 113 | } |
| 114 | |
| 115 | static uint8_t* FontSpriteGetCodepointBitmap(int32_t codepoint) |
| 116 | { |
| 117 | auto offset = FontSpriteGetCodepointOffset(codepoint); |
| 118 | return _characterBitmaps[offset]; |
| 119 | } |
| 120 | |
| 121 | static int32_t getMatchingOrOldest(u8string_view string, uint16_t scroll, uint16_t scrollingMode, PaletteIndex colour) |
| 122 | { |
no test coverage detected