Skip to content

Commit

Permalink
sound cleanup. addresses high lock count which leads to disabled sfx.
Browse files Browse the repository at this point in the history
  • Loading branch information
elhobbs committed May 6, 2017
1 parent 3987aee commit c937091
Show file tree
Hide file tree
Showing 26 changed files with 915 additions and 3,821 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,15 @@ export OUTPUT_FORMAT ?= 3dsx
#---------------------------------------------------------------------------------
ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard -mtp=soft

CFLAGS := -g -Wall -O2 -mword-relocations \
CFLAGS := -g -Wall -O2 -mword-relocations -save-temps \
-fomit-frame-pointer -ffast-math \
$(ARCH)

CFLAGS += $(INCLUDE) -DARM11 -D_3DS
CFLAGS1 := -g -O0 -mword-relocations \
-ffast-math \
$(ARCH)

CFLAGS += $(INCLUDE) -DARM11 -D_3DS -DHAVE_CONFIG_H

CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11

Expand Down
4 changes: 2 additions & 2 deletions arm11/include/keyboard.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

void keyboard_draw();
void keyboard_input();
void dkeyboard_draw();
void dkeyboard_input();
Loading

0 comments on commit c937091

Please sign in to comment.