| 361 | void CGameFont::OutSkip(float val) { fCurrentY += val * CurrentHeight_(); } |
| 362 | |
| 363 | float CGameFont::SizeOf_(const char cChar) |
| 364 | { |
| 365 | float x = GetCharTC((u16)(u8)(cChar)).z; |
| 366 | if (IsMultibyte() && IsSpaceCharacter((u16)(u8)(cChar))) |
| 367 | x += GetfXStep(); |
| 368 | return x * vInterval.x * GetWidthScale(); |
| 369 | } |
| 370 | |
| 371 | float CGameFont::SizeOf_(const u16 cChar) |
| 372 | { |
no test coverage detected