Remove trailing spaces

This commit is contained in:
raysan5 2021-04-01 20:24:33 +02:00
parent b4975619ed
commit aed0fee2ca
8 changed files with 60 additions and 60 deletions

View file

@ -1313,7 +1313,7 @@ Music LoadMusicStreamFromMemory(const char *fileType, unsigned char* data, int d
else if (TextIsEqual(fileExtLower, ".wav"))
{
drwav *ctxWav = RL_CALLOC(1, sizeof(drwav));
bool success = drwav_init_memory(ctxWav, (const void*)data, dataSize, NULL);
music.ctxType = MUSIC_AUDIO_WAV;