Skip to content

Commit

Permalink
Merge pull request scp-fs2open#6284 from Goober5000/directive_timing
Browse files Browse the repository at this point in the history
fix a minor bug with directive marking
  • Loading branch information
Goober5000 committed Aug 8, 2024
2 parents 35db8e3 + f2bffd3 commit 61e9463
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/mission/missiontraining.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ int comp_training_lines_by_born_on_date(const int *e1, const int *e2)
*
* Sort on EVENT_CURRENT and born on date, for other events (EVENT_SATISFIED, EVENT_FAILED) sort on born on date
*/
#define MIN_SATISFIED_TIME 5
#define MIN_FAILED_TIME 7
#define MIN_SATISFIED_TIME 5 * MILLISECONDS_PER_SECOND
#define MIN_FAILED_TIME 7 * MILLISECONDS_PER_SECOND
void sort_training_objectives()
{
int i, offset;
Expand Down

0 comments on commit 61e9463

Please sign in to comment.