Skip to content

Commit

Permalink
Fixed MP3 detection with compilers that use signed char datatypes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Lantinga committed Mar 3, 2000
1 parent 73cd786 commit 1486fce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES
@@ -1,4 +1,8 @@

1.0.5:
Paul Furber - Fri Mar 3 14:58:50 PST 2000
* Fixed MP3 detection with compilers that use signed char datatypes

1.0.4:
Sam Lantinga - Thu Feb 10 19:42:03 PST 2000
* Ported the base mixer and mikmod libraries to MacOS
Expand Down
6 changes: 3 additions & 3 deletions configure.in
Expand Up @@ -13,9 +13,9 @@ dnl Set various version strings - taken gratefully from the GTk sources

MAJOR_VERSION=1
MINOR_VERSION=0
MICRO_VERSION=4
INTERFACE_AGE=2
BINARY_AGE=4
MICRO_VERSION=5
INTERFACE_AGE=3
BINARY_AGE=5
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION

AC_SUBST(MAJOR_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion music.c
Expand Up @@ -328,7 +328,7 @@ int open_music(SDL_AudioSpec *mixer)
Mix_Music *Mix_LoadMUS(const char *file)
{
FILE *fp;
char magic[5];
Uint8 magic[5];
Mix_Music *music;

/* Figure out what kind of file this is */
Expand Down

0 comments on commit 1486fce

Please sign in to comment.