Skip to content

Commit

Permalink
Bittboy port update
Browse files Browse the repository at this point in the history
  • Loading branch information
szymor committed Sep 21, 2020
1 parent be33e22 commit 1e66b2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.bittboy
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ BIN_BASE = /opt/miyoo/bin/
PROJECT = yatka
SRC = src/main.c src/data_persistence.c src/video.c src/sound.c \
src/state_gameover.c src/state_settings.c src/randomizer.c \
src/state_mainmenu.c
src/state_mainmenu.c src/skin.c
OBJ = $(SRC:.c=.o)
DEP = $(SRC:.c=.d)
CFLAGS = -Iinc -D_BITTBOY -Ofast -march=armv5te -mtune=arm926ej-s
Expand Down
2 changes: 2 additions & 0 deletions src/sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ void initSound(void)
{
#if defined(_RETROFW)
int mixflags = MIX_INIT_OGG | MIX_INIT_MOD;
#elif defined(_BITTBOY)
int mixflags = MIX_INIT_OGG;
#else
int mixflags = MIX_INIT_OGG | MIX_INIT_MOD | MIX_INIT_MP3;
#endif
Expand Down

0 comments on commit 1e66b2d

Please sign in to comment.