Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed undefined references to joystick code
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Apr 3, 2009
1 parent cdde70c commit 1ecffbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.in
Expand Up @@ -2916,8 +2916,8 @@ esac

# Verify that we have all the platform specific files we need

if test x$enable_joystick = xyes; then
if test x$have_joystick != xyes; then
if test x$have_joystick != xyes; then
if test x$enable_joystick = xyes; then
AC_DEFINE(SDL_JOYSTICK_DISABLED)
fi
SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
Expand Down
1 change: 1 addition & 0 deletions src/joystick/dummy/SDL_sysjoystick.c
Expand Up @@ -87,4 +87,5 @@ SDL_SYS_JoystickQuit(void)
}

#endif /* SDL_JOYSTICK_DUMMY || SDL_JOYSTICK_DISABLED */

/* vi: set ts=4 sw=4 expandtab: */

0 comments on commit 1ecffbf

Please sign in to comment.