From 56c82bc8280ab6dc1ae0bcd4baf952d28a0429cd Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 11 Apr 2015 20:41:49 +0200 Subject: [PATCH] Mac: Fixed typo in two error messages. --- src/haptic/darwin/SDL_syshaptic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/haptic/darwin/SDL_syshaptic.c b/src/haptic/darwin/SDL_syshaptic.c index a74f008b7cc0f..1516d5d431a90 100644 --- a/src/haptic/darwin/SDL_syshaptic.c +++ b/src/haptic/darwin/SDL_syshaptic.c @@ -262,13 +262,13 @@ MacHaptic_MaybeAddDevice( io_object_t device ) CFSTR(kIOHIDPrimaryUsagePageKey)); if (refCF) { if (!CFNumberGetValue(refCF, kCFNumberLongType, &item->usagePage)) { - SDL_SetError("Haptic: Recieving device's usage page."); + SDL_SetError("Haptic: Receiving device's usage page."); } refCF = CFDictionaryGetValue(hidProperties, CFSTR(kIOHIDPrimaryUsageKey)); if (refCF) { if (!CFNumberGetValue(refCF, kCFNumberLongType, &item->usage)) { - SDL_SetError("Haptic: Recieving device's usage."); + SDL_SetError("Haptic: Receiving device's usage."); } } }