git-svn-id: https://spexeah.com:8443/svn/Asuro@307 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron 2018-04-05 11:08:13 +00:00
parent cb6c08696e
commit 011a0c5317
8 changed files with 2 additions and 2 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -347,14 +347,14 @@ begin
console.writeintln(device_count);
count := 0;
if prog_if <> $FF then begin
for i:=0 to device_count do begin
for i:=0 to device_count+1 do begin
if (devices[i].class_code = class_code) and (devices[i].subclass_class = subclass_code) and (devices[i].prog_if = prog_if) then begin
devices_out[count] := devices[i];
count := count + 1;
end;
end;
end else begin
for i:=0 to device_count do begin
for i:=0 to device_count+1 do begin
if (devices[i].class_code = class_code) and (devices[i].subclass_class = subclass_code) then begin
devices_out[count] := devices[i];
count := count + 1;