Commit 2d8cc36b822dfaa60d19cd1406aac6ab18740fca

Kano 2013-06-28T23:19:09

GPU fan rpm display 9999 when it overflows

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/driver-opencl.c b/driver-opencl.c
index 3c10c70..9bb7b1f 100644
--- a/driver-opencl.c
+++ b/driver-opencl.c
@@ -1284,7 +1284,8 @@ static void get_opencl_statline_before(char *buf, struct cgpu_info *gpu)
 		else
 			tailsprintf(buf, "       ", gt);
 		if (gf != -1)
-			tailsprintf(buf, "%4dRPM ", gf);
+			// show invalid as 9999
+			tailsprintf(buf, "%4dRPM ", gf > 9999 ? 9999 : gf);
 		else if ((gp = gpu_fanpercent(gpuid)) != -1)
 			tailsprintf(buf, "%3d%%    ", gp);
 		else