1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Make RPM 4 characters wide in curses status for neatness.

This commit is contained in:
Con Kolivas 2011-09-09 12:01:06 +10:00
parent 25c77ae85f
commit ab67b14460

2
main.c
View File

@ -1896,7 +1896,7 @@ static void curses_print_devstatus(int thr_id)
if (gt != -1)
wprintw(statuswin, "%.1fC ", gt);
if (gf != -1)
wprintw(statuswin, "%dRPM ", gf);
wprintw(statuswin, "%4dRPM ", gf);
if (gt || gf)
wprintw(statuswin, "| ");
}