Add const qualifier to char * path argument in qoaplay_open() (#2972)
* Add const qualifier to char * path argument in qoa_open() * Remove unnecessary cast
This commit is contained in:
parent
03e19c7f43
commit
08670ecea1
2 changed files with 3 additions and 3 deletions
|
@ -1287,7 +1287,7 @@ Music LoadMusicStream(const char *fileName)
|
|||
#if defined(SUPPORT_FILEFORMAT_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.ctxData = ctxQoa;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue