commit | d3b2ca3c7fa37809c6699dc2a6d6102217221c27 | [log] [tgz] |
---|---|---|
author | Constantin Kaplinsky <const@tightvnc.com> | Thu Aug 21 04:12:16 2008 +0000 |
committer | Constantin Kaplinsky <const@tightvnc.com> | Thu Aug 21 04:12:16 2008 +0000 |
tree | ce22f1271f592edca88aae41dcb58993eeb38d18 | |
parent | 53bdd3f593e92e3b679c2120208e2d368e3a1ecd [diff] |
VideoPriority parameter was set to 0 by default, now it defaults to 2. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2694 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/rfb/ServerCore.cxx b/common/rfb/ServerCore.cxx index 19b8fee..6606b14 100644 --- a/common/rfb/ServerCore.cxx +++ b/common/rfb/ServerCore.cxx
@@ -98,4 +98,4 @@ rfb::IntParameter rfb::Server::videoPriority ("VideoPriority", "Priority of sending updates for video area (0..8)", - 0, 0, 8); + 2, 0, 8);