Skip to content

Commit

Permalink
MorphOS: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
BeWorld2018 committed Feb 2, 2024
1 parent ccac3d5 commit 708bec4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile.mos
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ USE_DRFLAC=0
USE_OPUS=1
# mp3 music support (using mpg123)
USE_MPG123=1
# mp3 music support (using dr_mp3)
USE_DRMP3=0
# mp3 music support (using mini_mp3)
USE_MINIMP3=0
# midi music support (using timidity)
USE_TIMIDITY=1
# midi music support (using fluidsynth)
Expand Down Expand Up @@ -81,8 +81,8 @@ CFLAGS+= -DMUSIC_MP3_MPG123
LIBS+= -lmpg123_shared
endif

ifeq ($(USE_DRMP3),1)
CFLAGS+= -DMUSIC_MP3_DRMP3
ifeq ($(USE_MINIMP3),1)
CFLAGS+= -DMUSIC_MP3_MINIMP3
endif

ifeq ($(USE_XMP),1)
Expand Down Expand Up @@ -150,7 +150,7 @@ SOURCES = \
src/codecs/music_fluidsynth.c \
src/codecs/music_modplug.c \
src/codecs/music_mpg123.c \
src/codecs/music_drmp3.c \
src/codecs/music_minimp3.c \
src/codecs/music_nativemidi.c \
src/codecs/music_opus.c \
src/codecs/music_ogg.c \
Expand Down
2 changes: 1 addition & 1 deletion MorphOS/MIX_version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define str(s) #s
#define xstr(s) str(s)
#define VERSION 53
#define REVISION 5
#define REVISION 6
#define VERSTAG "\0$VER: sdl2_mixer.library " xstr(VERSION) "." xstr(REVISION) " (" __AMIGADATE__ ") (c) Bruno Peloille, Szilard Biro"

0 comments on commit 708bec4

Please sign in to comment.