diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2008-08-21 04:12:16 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2008-08-21 04:12:16 +0000 |
commit | d3b2ca3c7fa37809c6699dc2a6d6102217221c27 (patch) | |
tree | ce22f1271f592edca88aae41dcb58993eeb38d18 /common/rfb/ServerCore.cxx | |
parent | 53bdd3f593e92e3b679c2120208e2d368e3a1ecd (diff) | |
download | tigervnc-d3b2ca3c7fa37809c6699dc2a6d6102217221c27.tar.gz tigervnc-d3b2ca3c7fa37809c6699dc2a6d6102217221c27.zip |
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
Diffstat (limited to 'common/rfb/ServerCore.cxx')
-rw-r--r-- | common/rfb/ServerCore.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/ServerCore.cxx b/common/rfb/ServerCore.cxx index 19b8fee4..6606b14c 100644 --- a/common/rfb/ServerCore.cxx +++ b/common/rfb/ServerCore.cxx @@ -98,4 +98,4 @@ rfb::BoolParameter rfb::Server::queryConnect rfb::IntParameter rfb::Server::videoPriority ("VideoPriority", "Priority of sending updates for video area (0..8)", - 0, 0, 8); + 2, 0, 8); |