ソースを参照

added log warning for unsupported file extension for music stream (#1176)

* added log warning for unsupported file extension for music stream

* updated error log message for music stream when file format isn't supported
pull/1181/head
Louis Johnson 5年前
committed by GitHub
コミット
4f40f8bc47
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      src/raudio.c

+ 2
- 1
src/raudio.c ファイルの表示

@ -1139,7 +1139,8 @@ Music LoadMusicStream(const char *fileName)
}
}
#endif
else TRACELOG(LOG_WARNING, "STREAM: [%s] Fileformat not supported", fileName);
if (!musicLoaded)
{
if (false) { }

読み込み中…
キャンセル
保存