1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-25 10:42:20 -05:00

Fixed InvertTIA

This commit is contained in:
Niels 2010-06-21 20:46:08 +02:00
parent 52a731e773
commit 4ba71fb94f

View File

@ -2042,7 +2042,7 @@ var
i, h: Integer;
begin
h := High(tI);
Temp := tI;
Temp := Copy(tI);
for i := 0 to h do
tI[i] := Temp[h - i];
end;