status line is extended to 33 items, display loop count and loop stop in new labels a top of timeline. added new column in macros list view that displays VIMS descriptions

This commit is contained in:
c0ntrol
2019-01-16 00:01:42 +01:00
parent 021e98395d
commit c23bec2393
5 changed files with 124 additions and 13 deletions

View File

@@ -28,7 +28,7 @@
int status_to_arr( char *status, int *array )
{
int n = sscanf(status, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d",
int n = sscanf(status, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d",
array + 0,
array + 1,
array + 2,
@@ -59,7 +59,9 @@ int status_to_arr( char *status, int *array )
array + 27,
array + 28,
array + 29,
array + 30 );
array + 30,
array + 31,
array + 32 );
return n;
}