SDL2# - C# Wrapper for SDL2
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

SDL_HasARMSIMD should be SDL_bool return type

This function should return an SDL_bool, not void per SDL wiki https://wiki.libsdl.org/SDL_HasARMSIMD.

This will possibly have an effect on armv7 and early armv8 platforms so it's important it gets fixed.

authored by

starfrost and committed by
Ethan Lee
b72c0c57 443a3576

+1 -1
+1 -1
src/SDL2.cs
··· 8873 8873 8874 8874 /* Only available in SDL 2.0.11 or higher. */ 8875 8875 [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] 8876 - public static extern void SDL_HasARMSIMD(); 8876 + public static extern SDL_bool SDL_HasARMSIMD(); 8877 8877 8878 8878 #endregion 8879 8879