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/DesktopWindow.h b/vncviewer/DesktopWindow.h
index 9700044..ce58938 100644
--- a/vncviewer/DesktopWindow.h
+++ b/vncviewer/DesktopWindow.h
@@ -129,14 +129,14 @@
bool mouseGrabbed;
struct statsEntry {
- unsigned fps;
+ unsigned ups;
unsigned pps;
unsigned bps;
};
struct statsEntry stats[100];
struct timeval statsLastTime;
- unsigned statsLastFrame;
+ unsigned statsLastUpdates;
unsigned statsLastPixels;
unsigned statsLastPosition;