summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/r128_probe.c2
-rw-r--r--src/radeon_probe.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/r128_probe.c b/src/r128_probe.c
index 1b07ebd..b1f427a 100644
--- a/src/r128_probe.c
+++ b/src/r128_probe.c
@@ -332,7 +332,7 @@ R128Probe(DriverPtr drv, int flags)
if (flags & PROBE_DETECT)
foundScreen = TRUE;
else for (i = 0; i < numUsed; i++) {
- if (r128_get_scrninfo(i))
+ if (r128_get_scrninfo(usedChips[i]))
foundScreen = TRUE;
}
diff --git a/src/radeon_probe.c b/src/radeon_probe.c
index fc621c7..4ec7485 100644
--- a/src/radeon_probe.c
+++ b/src/radeon_probe.c
@@ -180,7 +180,7 @@ RADEONProbe(DriverPtr drv, int flags)
foundScreen = TRUE;
} else {
for (i = 0; i < numUsed; i++) {
- if (radeon_get_scrninfo(i))
+ if (radeon_get_scrninfo(usedChips[i]))
foundScreen = TRUE;
}
}