UDP Recieve now works.

git-svn-id: https://spexeah.com:8443/svn/Asuro@837 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron
2020-07-08 00:16:17 +00:00
parent c3b256e4f1
commit c3fe1ca707
73 changed files with 48 additions and 32 deletions

View File

@ -100,7 +100,7 @@ end;
function switchendian16(b : uint16) : uint16;
begin
switchendian16:= ((b AND $FF00) SHR 8) OR ((b AND $00FF) SHR 8);
switchendian16:= ((b AND $FF00) SHR 8) OR ((b AND $00FF) SHL 8);
end;
function switchendian32(b : uint32) : uint32;