Ich habe mal wieder einen Komischen Zustand:
Und zwar kann mein Client keine Musik Files mehr Laden.
Die entsprechende Stelle Music2.cpp:
Code:
BOOL PlayMusic_( LPCTSTR lpszFileName, int nLoopCount )
{
if (_taccess(lpszFileName, 0) != 0) {
Error("PlayMusic_ - Musik File %s could not found!", lpszFileName);
return FALSE;
}
if( !g_Dig )
return FALSE;
if( g_bEnableMusic == FALSE ) // »ç¿îµå Ä«µå°¡ ¾ø°Å³ª ²°À»¶§
return FALSE;
if( _tcscmp( lpszFileName, g_filename ) == 0 && IsPlayingMusic() )
return FALSE;
if( g_Stream )
AIL_close_stream( g_Stream );
strcpy( g_filename, lpszFileName );
// »õ·Î¿î ½ºÆ®¸²À¸·Î!
g_Stream = AIL_open_stream( g_Dig, g_filename, 0 );
if( !g_Stream ) {
Error( "PlayMusic_ - Could not load Music File %s!", g_filename);
return FALSE;
}
Meine Frage ist jetzt da ich nicht verstehe worin das Problem besteht was stimmt mit dem Client nicht?
Ich nutze einen "Cleanen" V15 Source mit einigen Änderungen (Keine Betreffen die Musik2.cpp)
Die Dateien im Musik Ordner sind nicht in einer *.res Datei.
Die genaue Fehlermeldung:
Code:
PlayMusic_ - Could not load Music File music\BgmTo1Flaris.ogg!
Hat jemand eine Idee was da kaputt sein könnte?







