Clarity for VERSION_ATLEAST

This commit is contained in:
Ethan Lee 2013-04-17 18:51:29 -04:00
parent f154fc784b
commit d49903dd9e

View file

@ -404,7 +404,7 @@ namespace SDL2
public static bool SDL_VERSION_ATLEAST(int X, int Y, int Z) public static bool SDL_VERSION_ATLEAST(int X, int Y, int Z)
{ {
return SDL_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z); return (SDL_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z));
} }
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]