txesmi was faster than me blush

The thing is, that 'STRING* blah[3];' will create only an array of empty pointers, to use them you need to allocate strings and save them into those pointers.

This what I've just came out with:
Code:
STRING* names[99];

void main(){
       int i = 0;
       for(i=0; i < 99; i++){
              names[i] = str_create("");
       }

        str_cpy(names[0], "Arty - Kate (Original Mix).mp3");

         media_play(names[0], NULL, 100);

         while(1){
               draw_text(names[0], 10, 10, COLOR_WHITE);
               wait(1);
         }
}



There might be some typos, I'm using my cellphone to write this post. I hope it helps laugh

Greets


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung