Commit 56979749e96b24f72da87ff7fd2809bd3a9cf931

Ryan C. Gordon 2014-02-06T10:00:45

Fixed a typo.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/haptic/linux/SDL_syshaptic.c b/src/haptic/linux/SDL_syshaptic.c
index 558177b..995001c 100644
--- a/src/haptic/linux/SDL_syshaptic.c
+++ b/src/haptic/linux/SDL_syshaptic.c
@@ -58,7 +58,7 @@ void haptic_udev_callback(SDL_UDEV_deviceevent udev_type, int udev_class, const 
 typedef struct SDL_hapticlist_item
 {
     char *fname;                /* Dev path name (like /dev/input/event1) */
-    SDL_Haptic *haptic;         /* Assosciated haptic. */
+    SDL_Haptic *haptic;         /* Associated haptic. */
     struct SDL_hapticlist_item *next;
 } SDL_hapticlist_item;