mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 22:30:06 +01:00
added #73, refactor task handler, fix problem in task manager that caused threads to run in serial, added parameter to alpha:set from mixing source, optimized mask transition, updated status handling in all clients, added new icons, removed obsolete code
This commit is contained in:
@@ -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",
|
||||
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",
|
||||
array + 0,
|
||||
array + 1,
|
||||
array + 2,
|
||||
@@ -57,7 +57,9 @@ int status_to_arr( char *status, int *array )
|
||||
array + 25,
|
||||
array + 26,
|
||||
array + 27,
|
||||
array + 28 );
|
||||
array + 28,
|
||||
array + 29,
|
||||
array + 30 );
|
||||
|
||||
return n;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user