Remove unnecessary cast
This commit is contained in:
parent
36286dc72a
commit
c3ed09def8
|
|
@ -1287,7 +1287,7 @@ Music LoadMusicStream(const char *fileName)
|
||||||
#if defined(SUPPORT_FILEFORMAT_QOA)
|
#if defined(SUPPORT_FILEFORMAT_QOA)
|
||||||
else if (IsFileExtension(fileName, ".qoa"))
|
else if (IsFileExtension(fileName, ".qoa"))
|
||||||
{
|
{
|
||||||
qoaplay_desc *ctxQoa = qoaplay_open((char *)fileName);
|
qoaplay_desc *ctxQoa = qoaplay_open(fileName);
|
||||||
music.ctxType = MUSIC_AUDIO_QOA;
|
music.ctxType = MUSIC_AUDIO_QOA;
|
||||||
music.ctxData = ctxQoa;
|
music.ctxData = ctxQoa;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user