summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-08-15 20:00:56 +0000
committerMike Fulbright <msf@redhat.com>2001-08-15 20:00:56 +0000
commit95fa90362187b8d3d8439b06c90212c313d987d0 (patch)
tree4de41722636a08ce00f239ed67affe0d08e2914d /textw
parente4af744efd53c06c2caf2f17b4f7f3f4dd60216b (diff)
downloadanaconda-95fa90362187b8d3d8439b06c90212c313d987d0.tar.gz
anaconda-95fa90362187b8d3d8439b06c90212c313d987d0.tar.xz
anaconda-95fa90362187b8d3d8439b06c90212c313d987d0.zip
proper fix for fuzzy matching of ddcprobe reported video ram
Diffstat (limited to 'textw')
-rw-r--r--textw/xconfig_text.py23
1 files changed, 2 insertions, 21 deletions
diff --git a/textw/xconfig_text.py b/textw/xconfig_text.py
index a21e058ff..887639883 100644
--- a/textw/xconfig_text.py
+++ b/textw/xconfig_text.py
@@ -550,17 +550,7 @@ class XConfigWindowCard:
except:
vidRam = 1024
- count = 0
- self.selectedRam = 0
- for size in self.videocard.possible_ram_sizes():
- #--Cards such as Mach64 and ATI Rage Mobility report 64k less ram
- # than it should
- small = size - 64
- if size == vidRam or small == vidRam:
- self.selectedRam = count
- break
- count = count + 1
-
+ self.selectedRam = self.videocard.index_closest_ram_size(vidRam)
try:
vidRam = string.atoi(self.videocard.primaryCard(useProbed=1).getVideoRam())
@@ -568,16 +558,7 @@ class XConfigWindowCard:
vidRam = 1024
count = 0
- self.origRam = 0
- for size in self.videocard.possible_ram_sizes():
- #--Cards such as Mach64 and ATI Rage Mobility report 64k less ram
- # than it should
- small = size - 64
- if size == vidRam or small == vidRam:
- self.origRam = count
- break
- count = count + 1
-
+ self.origRam = self.videocard.index_closest_ram_size(vidRam)
skipx = 0
while 1: