Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 17, 2001
1 parent 5175598 commit 5ea9e73
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified VisualC.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion mixer.c
Expand Up @@ -411,7 +411,7 @@ Mix_Chunk *Mix_LoadWAV_RW(SDL_RWops *src, int freesrc)
/* Find out what kind of audio file this is */
magic = SDL_ReadLE32(src);
/* Seek backwards for compatibility with older loaders */
SDL_RWseek(src, -sizeof(Uint32), SEEK_CUR);
SDL_RWseek(src, -(int)sizeof(Uint32), SEEK_CUR);

switch (magic) {
case WAVE:
Expand Down

0 comments on commit 5ea9e73

Please sign in to comment.