src/music.h
branchnoai
changeset 9869 6404afe43575
parent 6574 e1d1a12faaf7
child 10429 1b99254f9607
equal deleted inserted replaced
9868:3998f2e73dda 9869:6404afe43575
     7 
     7 
     8 #define NUM_SONGS_PLAYLIST 33
     8 #define NUM_SONGS_PLAYLIST 33
     9 #define NUM_SONGS_AVAILABLE 22
     9 #define NUM_SONGS_AVAILABLE 22
    10 
    10 
    11 struct SongSpecs {
    11 struct SongSpecs {
    12 	char filename[256];
    12 	char filename[MAX_PATH];
    13 	char song_name[64];
    13 	char song_name[64];
    14 };
    14 };
    15 
    15 
    16 extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE];
    16 extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE];
    17 
    17