| 314 | } |
| 315 | |
| 316 | ImageId FontSpriteGetCodepointSprite(FontStyle fontStyle, int32_t codepoint) |
| 317 | { |
| 318 | auto codePointOffset = FontSpriteGetCodepointOffset(codepoint); |
| 319 | int32_t offset = EnumValue(fontStyle) * SPR_FONTS_GLYPH_COUNT; |
| 320 | |
| 321 | return ImageId(SPR_FONTS_BEGIN + offset + codePointOffset, OpenRCT2::Drawing::Colour::black); |
| 322 | } |
| 323 | |
| 324 | int32_t FontGetLineHeight(FontStyle fontStyle) |
| 325 | { |
no test coverage detected