summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xf86config.py2
-rw-r--r--xserver.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/xf86config.py b/xf86config.py
index d96952ac1..9c245b0ef 100644
--- a/xf86config.py
+++ b/xf86config.py
@@ -83,7 +83,7 @@ class XF86Config:
elif string.atoi(self.vidRam) >= 1024:
self.modes["8"] = ["640x480", "800x600", "1024x768", "1152x864"]
self.modes["16"] = ["640x480", "800x600"]
- self.modes["32"] = ["640x480"]
+ self.modes["32"] = []
elif string.atoi(self.vidRam) >= 512:
self.modes["8"] = ["640x480", "800x600"]
self.modes["16"] = ["640x480"]
diff --git a/xserver.py b/xserver.py
index a6dd0e450..8006ebf62 100644
--- a/xserver.py
+++ b/xserver.py
@@ -149,8 +149,8 @@ EndSection
if x.monSect:
bpp = x.bpp
else:
- x.modes["32"] = [ "640x480" ]
- x.modes["16"] = [ "640x480" ]
+ x.modes["32"] = [ ]
+ x.modes["16"] = [ ]
x.modes["8"] = [ "640x480" ]
bpp = None
f.write (x.screenSection (1))