]> source.dussan.org Git - tigervnc.git/commitdiff
Fixed the mistake int ScaledPixelBuffer::getScale().
authorgeorge82 <george82@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Mon, 11 Sep 2006 06:37:50 +0000 (06:37 +0000)
committergeorge82 <george82@3789f03b-4d11-0410-bbf8-ca57d06f2519>
Mon, 11 Sep 2006 06:37:50 +0000 (06:37 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@659 3789f03b-4d11-0410-bbf8-ca57d06f2519

common/rfb/ScaledPixelBuffer.h

index 7ac318700d21b03b210692eb6538c2b4e54686eb..710e543535075a6ea5661eb6430fc68d30c777ef 100644 (file)
@@ -48,7 +48,7 @@ namespace rfb {
     int getSrcWidth()  const { return src_width; }
     int getSrcHeight() const { return src_height; }
     int area() const { return scaled_width * scaled_height; }
-    int getScale() const { return int(scale_ratio + 0.5); }
+    int getScale() const { return int(scale_ratio * 100 + 0.5); }
     double getScaleRatio() const { return scale_ratio; }
 
     // Get rectangle encompassing this buffer