akumie schrieb:
yeah, I have alot of time but tried sourcecode and failed , way to hard
HorvatM:
vbTextOut requires the font to be in character segment 3, so just change
copymem ((void*)CharSeg0, (void*)FONT, 8192);
to
copymem ((void*)CharSeg3, (void*)FONT, 8192);
Something else: You only need to use either vbDisplayShow() or vbFXFadeIn(), not both. vbFXFadeIn() fades in nicely, while vbDisplayShow() just displays immediately. If you want a fade in, you need to call vbFXFadeIn() after vbTextOut(), otherwise there won’t be anything on the screen yet that could be faded in. 🙂
Make sure the number after WRLD_ON| is the same as the first parameter you have for vbTextOut (in this case, 0). It is the bgmap that you are storing the text to.