Search results

  1. T

    GP2X Anim8or + Zeengine3d

    Being quite prone to programmer's art, I've found that Anim8or is merciful to my modelling skills. Knowing that there may be others out there like me in this aspect, I figured the following code could be of use. Both are modifications of code available elsewhere. I do not garantee both are...
  2. T

    Calling Flite From Another Program

    Hello, I'm trying to get Flite to read out something and nothing I've tried works. system("./flite -t \"Text\""); fp = fopen("out.txt", "w"); fwrite( msg, 1, strlen(msg), fp ); fflush(fp); fclose(fp); system("./flite out.txt" ); execl( "./flite", "./flite", "-t", msg ); execl( "./flite"...
  3. T

    GP32 Displaying Text

    Just wondering what everybody uses for displaying text with SDL or the minimal lib. I'm still downloading the SDKs so it might be really obvious once that's done, but so far I haven't seen any mention of it anywhere. Do we get SDL_ttf? Or do we have to use bitmap fonts? Sorry if this has been...
Back
Top