diff options
author | aliaspider | 2014-07-14 06:10:33 +0100 |
---|---|---|
committer | aliaspider | 2014-07-14 06:10:33 +0100 |
commit | 0ccab798847ee0854a66a4b8a2aee56fce78c324 (patch) | |
tree | 5b1f520086dd997ccbfc2bdccbe63f4550d8438b | |
parent | a8ff99c68bb1f0a09ab494c3b0e91bdc05b57146 (diff) | |
download | picogpsp-0ccab798847ee0854a66a4b8a2aee56fce78c324.tar.gz picogpsp-0ccab798847ee0854a66a4b8a2aee56fce78c324.tar.bz2 picogpsp-0ccab798847ee0854a66a4b8a2aee56fce78c324.zip |
fix x86 build
-rw-r--r-- | input.c | 1 | ||||
-rw-r--r-- | x86/Makefile | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -588,7 +588,6 @@ u32 update_input() key &= ~(joy_map(event.jbutton.button)); break; } - } } } diff --git a/x86/Makefile b/x86/Makefile index c1d772b..276996d 100644 --- a/x86/Makefile +++ b/x86/Makefile @@ -17,7 +17,7 @@ BIN ?= gpsp.exe VPATH += .. CFLAGS += -DPC_BUILD -Wall -m32 INCLUDES = -I${PREFIX}/include `sdl-config --cflags` -LIBS = -L${PREFIX}/lib `sdl-config --libs` -mconsole -lz -m32 +LIBS = -L${PREFIX}/lib `sdl-config --libs` -lz -m32 # Compilation: |