1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-04 23:44:08 +00:00

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

View File

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