-
Notifications
You must be signed in to change notification settings - Fork 21
Closed
Description
Hello. I found another little mistake.
SDL2-for-Pascal/units/sdl2.pas
Lines 352 to 355 in 0fcaf6a
| function SDL_AUDIO_ISLITTLEENDIAN(x: Cardinal): Cardinal; | |
| begin | |
| Result := not SDL_AUDIO_ISLITTLEENDIAN(x); | |
| end; |
It's calling itself recursively, when clearly we want to call SDL_AUDIO_ISBIGENDIAN
function SDL_AUDIO_ISLITTLEENDIAN(x: Cardinal): Cardinal;
begin
Result := not SDL_AUDIO_ISBIGENDIAN(x);
end;Can I make a fast PR to fix it?
Metadata
Metadata
Assignees
Labels
No labels