This is the codes i wrote :
//music Mix_Music *music = NULL //additional musics Mix_Chunk *muks = NULL; Mix_Chunk *music2 = NULL; Mix_Chunk *music3 = NULL; Mix_Chunk *music4 = NULL;
and
void clean() {
Mix_HaltMusic();
Mix_FreeMusic( music );
Mix_FreeChunk( muks );
Mix_FreeChunk( music2 );
Mix_FreeChunk( music3 );
Mix_FreeChunk( music4 );
Mix_CloseAudio();
and
bool load_files() {
music = Mix_LoadMUS( "vq.wav" );
if( music == NULL ) { return false; }
muks = Mix_LoadWAV( "01.wav" );
music2 = Mix_LoadWAV( "02.wav" );
music3 = Mix_LoadWAV( "03.wav" );
music4 = Mix_LoadWAV( "04.wav" );
if( ( muks == NULL ) || (music2 == NULL ) || (music3 == NULL ) || (music4 == NULL ) ) { return false; }
then, the error was :
--------------------Configuration: my project - Debug-------------------- Compiling... ini.cpp ini.cpp:21: error: syntax error before `*' token ini.cpp: In function `bool load_files()': ini.cpp:223: error: `muks' undeclared (first use this function) ini.cpp:223: error: (Each undeclared identifier is reported only once for each function it appears in.) ini.o - 3 error(s), 0 warning(s)
any suggest?






