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

Commit

Permalink
Fixed some typos preventing SDL from compiling with the haptic dummy …
Browse files Browse the repository at this point in the history
…driver.
  • Loading branch information
bobbens committed Jul 9, 2008
1 parent 6de73d0 commit 752aa65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -239,7 +239,7 @@ AC_ARG_ENABLE(haptic,
AC_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [[default=yes]]]),
, enable_haptic=yes)
if test x$enable_haptic != xyes; then
AC_DEFINE(SDL_HAPTIC_DISABLE)
AC_DEFINE(SDL_HAPTIC_DISABLED)
else
SOURCES="$SOURCES $srcdir/src/haptic/*.c"
fi
Expand Down
2 changes: 1 addition & 1 deletion src/haptic/dummy/SDL_syshaptic.c
Expand Up @@ -21,7 +21,7 @@
*/
#include "SDL_config.h"

#ifdef defined(SDL_HAPTIC_DUMMY) || defined(SDL_HAPTIC_DISABLED)
#if defined(SDL_HAPTIC_DUMMY) || defined(SDL_HAPTIC_DISABLED)

#include "SDL_haptic.h"
#include "../SDL_haptic_c.h"
Expand Down

0 comments on commit 752aa65

Please sign in to comment.