| 4552 | }; |
| 4553 | |
| 4554 | static int FixJoedChar(uint8 ch) |
| 4555 | { |
| 4556 | int c = ch; c -= 32; |
| 4557 | return (c < 0 || c > 98) ? 0 : c; |
| 4558 | } |
| 4559 | static int JoedCharWidth(uint8 ch) |
| 4560 | { |
| 4561 | return FCEUFont[FixJoedChar(ch)*8]; |
no outgoing calls
no test coverage detected