We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea4db46 commit 0e7f36bCopy full SHA for 0e7f36b
units/sdl3.pas
@@ -108,10 +108,7 @@ function SDL_VERSION: Integer;
108
109
function SDL_VERSION_ATLEAST(X, Y, Z: Integer): Boolean;
110
begin
111
- if (SDL_VERSION >= SDL_VERSIONNUM(X, Y, Z)) then
112
- Result:=True
113
- else
114
- Result:=False;
+ Result := SDL_VERSION >= SDL_VERSIONNUM(X, Y, Z);
115
end;
116
117
end.
0 commit comments