Skip to content

Commit

Permalink
Merge pull request scp-fs2open#6259 from Goober5000/6258_followup
Browse files Browse the repository at this point in the history
fix copy-paste error in timestamp_since
  • Loading branch information
Goober5000 authored Jul 17, 2024
2 parents 20602b1 + bac4eb8 commit e1458ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/io/timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ int timestamp_since(int stamp)
{
// handle special values
if (stamp < 0)
return INT_MAX;
return INT_MIN;
if (stamp == 1)
return 0;

Expand Down

0 comments on commit e1458ae

Please sign in to comment.