diff --git a/engine/platform/sdl/in_sdl.c b/engine/platform/sdl/in_sdl.c index 65282890..3957b2e9 100644 --- a/engine/platform/sdl/in_sdl.c +++ b/engine/platform/sdl/in_sdl.c @@ -122,7 +122,8 @@ Platform_Vibrate */ void Platform_Vibrate( float time, char flags ) { - // stub + if( g_joy ) + SDL_JoystickRumble( g_joy, 0xFFFF, 0xFFFF, time * 1000.0f ); } /*