mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-23 10:25:29 +00:00
Clarity for VERSION_ATLEAST
This commit is contained in:
parent
f154fc784b
commit
d49903dd9e
|
@ -404,7 +404,7 @@ namespace SDL2
|
|||
|
||||
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)]
|
||||
|
|
Loading…
Reference in a new issue