static const char *it_msg_cn
....
//drawtext(vid_buf, 16, 20, it_msg, 255, 255, 255, it>51?255:it*5);
ttfdrawtext(it_msg_cn);
//drawtext ttf ver.
TTF_Font *font;
SDL_Surface *text;
SDL_Color text_color;
int ttfdrawtext(const char* textbuf)
{
TTF_Init();
font = TTF_OpenFont("msyh.ttf", 20);
//text_color = {255, 255, 255};
text_color.r=255;text_color.g=255;text_color.b=255;
text = TTF_RenderUTF8_Blended(font,ToUTF8(textbuf),text_color);
SDL_BlitSurface(text, NULL, sdl_scrn, NULL);
SDL_Flip(sdl_scrn);
}