Browse Source

Remove bogus -geometry width/height adjustment from vncserver script


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5061 3789f03b-4d11-0410-bbf8-ca57d06f2519
tags/v1.2.90
Adam Tkac 11 years ago
parent
commit
ce6feaa3ca
1 changed files with 0 additions and 8 deletions
  1. 0
    8
      unix/vncserver

+ 0
- 8
unix/vncserver View File

@@ -373,14 +373,6 @@ sub CheckGeometryAndDepth
die "$prog: geometry $geometry is invalid\n";
}

while (($width % 4)!=0) {
$width = $width + 1;
}

while (($height % 2)!=0) {
$height = $height + 1;
}

$geometry = "${width}x$height";
} else {
die "$prog: geometry $geometry is invalid\n";

Loading…
Cancel
Save