Replace "frames" with "updates" in stats
The VNC servers aren't great at getting full frames with each update,
so avoid calling it "frames per second" in the statistics as that
can be misleading.
diff --git a/vncviewer/CConn.h b/vncviewer/CConn.h
index 426bd1e..dd4ae89 100644
--- a/vncviewer/CConn.h
+++ b/vncviewer/CConn.h
@@ -40,7 +40,7 @@
const char *connectionInfo();
- unsigned getFrameCount();
+ unsigned getUpdateCount();
unsigned getPixelCount();
unsigned getPosition();
@@ -95,7 +95,7 @@
DesktopWindow *desktop;
- unsigned frameCount;
+ unsigned updateCount;
unsigned pixelCount;
rfb::PixelFormat serverPF;