diff options
author | m45t3r | 2020-05-27 21:50:46 -0300 |
---|---|---|
committer | m45t3r | 2020-05-27 21:50:46 -0300 |
commit | c715b6547a6499fb4e984894f95a8cc395d89ee1 (patch) | |
tree | a37c058c65c079212d97981aca5ca8d145019430 | |
parent | 10ed8bec74ed0882a91140f6cf2ddcabdd23f86f (diff) | |
download | snesemu-c715b6547a6499fb4e984894f95a8cc395d89ee1.tar.gz snesemu-c715b6547a6499fb4e984894f95a8cc395d89ee1.tar.bz2 snesemu-c715b6547a6499fb4e984894f95a8cc395d89ee1.zip |
Enable FAST_ALIGNED_LSB_WORD_ACCESS in Miyoo
-rw-r--r-- | Makefile.miyoo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.miyoo b/Makefile.miyoo index 48f0e2a..acae0aa 100644 --- a/Makefile.miyoo +++ b/Makefile.miyoo @@ -19,7 +19,7 @@ SDL_CFLAGS := $(shell $(SYSROOT)/usr/bin/sdl-config --cflags) SDL_LIBS := $(shell $(SYSROOT)/usr/bin/sdl-config --libs) # change compilation / linking flag options -CFLAGS = -DLSB_FIRST -I. -Ilibretro-common/include -Isrc -DINLINE="inline" -DRIGHTSHIFT_IS_SAR +CFLAGS = -DLSB_FIRST -DFAST_ALIGNED_LSB_WORD_ACCESS -I. -Ilibretro-common/include -Isrc -DINLINE="inline" -DRIGHTSHIFT_IS_SAR CFLAGS += -Isource -I./shell/emu -I./shell/scalers -I./shell/emu -I./shell/audio -I./shell/menu -I./shell/video/sdl -I./shell/input -Ishell/headers CFLAGS += -Ofast -fsingle-precision-constant -fno-PIC -flto |