Skip to content

Commit 1e66b2d

Browse files
committed
Bittboy port update
1 parent be33e22 commit 1e66b2d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile.bittboy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ BIN_BASE = /opt/miyoo/bin/
44
PROJECT = yatka
55
SRC = src/main.c src/data_persistence.c src/video.c src/sound.c \
66
src/state_gameover.c src/state_settings.c src/randomizer.c \
7-
src/state_mainmenu.c
7+
src/state_mainmenu.c src/skin.c
88
OBJ = $(SRC:.c=.o)
99
DEP = $(SRC:.c=.d)
1010
CFLAGS = -Iinc -D_BITTBOY -Ofast -march=armv5te -mtune=arm926ej-s

src/sound.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ void initSound(void)
1818
{
1919
#if defined(_RETROFW)
2020
int mixflags = MIX_INIT_OGG | MIX_INIT_MOD;
21+
#elif defined(_BITTBOY)
22+
int mixflags = MIX_INIT_OGG;
2123
#else
2224
int mixflags = MIX_INIT_OGG | MIX_INIT_MOD | MIX_INIT_MP3;
2325
#endif

0 commit comments

Comments
 (0)