Well, I'm translating a game to Spanish, so I have to include tittles. The font is in .dat format, so It's difficult for me edit it. Anyone knows how to do it? The game is called Time Ace.

+ First 4 bytes (uint) is the number of chars.
+ For each char, there are 4 bytes (uint) with the offset of the char info.
+ Char info:
1 byte -> Widht
1 byte -> Height
Width * Height bytes -> char image, 8bpp
+ The first char is 0x20 so to find one char in the offset table, first you need to get the ASCII+Latin-1 code, substract 0x1F and then multiplied it by 4.