race timestamp now uses 'long long' instead of 'time_t' to prevent incompatibilities

This commit is contained in:
Zeno Rogue 2019-01-14 22:57:40 +01:00
parent a9bf8304a4
commit 370de4c735
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ struct ghost {
charstyle cs;
int result;
int checksum;
time_t timestamp;
long long timestamp;
vector<ghostmoment> history;
};