mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-04 00:46:25 +00:00
Rename SDL_Swap(16|32|64)(LE|BE) to SDL_Swap(LE|BE)(16|32|64)
This commit is contained in:

committed by
Anonymous Maarten

parent
ef6123886e
commit
32907a9606
@@ -1527,8 +1527,8 @@ static int WaveNextChunk(SDL_IOStream *src, WaveChunk *chunk)
|
||||
return -1;
|
||||
}
|
||||
|
||||
chunk->fourcc = SDL_SwapLE32(chunkheader[0]);
|
||||
chunk->length = SDL_SwapLE32(chunkheader[1]);
|
||||
chunk->fourcc = SDL_Swap32LE(chunkheader[0]);
|
||||
chunk->length = SDL_Swap32LE(chunkheader[1]);
|
||||
chunk->position = nextposition + 8;
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user