Commit 20364769e0fb88699a07779806535b645e76efe0

Sam Lantinga 2017-11-11T17:21:47

Fixed typo in comment

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/cpuinfo/SDL_cpuinfo.c b/src/cpuinfo/SDL_cpuinfo.c
index 968d73e..24a0073 100644
--- a/src/cpuinfo/SDL_cpuinfo.c
+++ b/src/cpuinfo/SDL_cpuinfo.c
@@ -349,7 +349,7 @@ CPU_haveNEON(void)
     /* (note that sysctlbyname("hw.optional.neon") doesn't work!) */
     return 1;  /* all Apple ARMv7 chips and later have NEON. */
 #elif defined(__APPLE__)
-    return 0;  /* assune anything else from Apple doesn't have NEON. */
+    return 0;  /* assume anything else from Apple doesn't have NEON. */
 #elif defined(__QNXNTO__)
     return SYSPAGE_ENTRY(cpuinfo)->flags & ARM_CPU_FLAG_NEON;
 #elif (defined(__LINUX__) || defined(__ANDROID__)) && defined(HAVE_GETAUXVAL)