diff src/haptic/dummy/SDL_syshaptic.c @ 2509:3b54b3a97046 gsoc2008_force_feedback

Dummy SDL haptic driver finally builds now.
author Edgar Simo <bobbens@gmail.com>
date Wed, 09 Jul 2008 17:06:54 +0000
parents f23cee9e16fc
children ef147ee4896c
line wrap: on
line diff
--- a/src/haptic/dummy/SDL_syshaptic.c	Wed Jul 09 16:33:51 2008 +0000
+++ b/src/haptic/dummy/SDL_syshaptic.c	Wed Jul 09 17:06:54 2008 +0000
@@ -24,14 +24,12 @@
 #if defined(SDL_HAPTIC_DUMMY) || defined(SDL_HAPTIC_DISABLED)
 
 #include "SDL_haptic.h"
-#include "../SDL_haptic_c.h"
 #include "../SDL_syshaptic.h"
 
 
 int
 SDL_SYS_HapticInit(void)
 {
-   SDL_numhaptics = 0;
    return 0;
 }
 
@@ -53,7 +51,7 @@
 
 
 int
-SDL_JoystickIsHaptic(SDL_Joystick * joystick)
+SDL_SYS_JoystickIsHaptic(SDL_Joystick * joystick)
 {
    return 0;
 }
@@ -128,7 +126,7 @@
 SDL_SYS_HapticDestroyEffect(SDL_Haptic * haptic, struct haptic_effect * effect)
 {
    SDL_SetError("Logic error: No haptic devices available.");
-   return -1;
+   return;
 }