1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-04-21 12:31:19 +02:00

increased task buffer size

This commit is contained in:
travis-farmer 2024-12-28 03:26:03 -05:00
parent 23eb35290f
commit a6fcad2ecf
No known key found for this signature in database
GPG Key ID: 0BC296791D14CB35

View File

@ -419,7 +419,7 @@ struct Task {
bool completed; bool completed;
bool processed; bool processed;
}; };
static const int MAX_TASKS = 50; static const int MAX_TASKS = 1000;
long taskIDCntr = 1; long taskIDCntr = 1;
long CurrentTaskID = -1; long CurrentTaskID = -1;
int taskResendCount = 0; int taskResendCount = 0;