From 8f78619a2ef86cda1d952b14681eb556c499f2ce Mon Sep 17 00:00:00 2001 From: aaron Date: Fri, 27 Oct 2017 07:51:09 +0000 Subject: [PATCH] git-svn-id: https://spexeah.com:8443/svn/Asuro@275 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c --- src/driver/PCI.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/PCI.pas b/src/driver/PCI.pas index 04125f55..cefe48f2 100644 --- a/src/driver/PCI.pas +++ b/src/driver/PCI.pas @@ -318,7 +318,7 @@ begin count := 0; for i:=0 to device_count 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[i] := devices[i]; //prog_if + devices_out[count] := devices[i]; //prog_if count := count + 1; end; end;