aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2025-04-05 20:12:05 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2025-04-05 20:12:05 +0200
commit2b92b00091f5006baa9ab11f05e43e6351bd1519 (patch)
tree609fe95851a662a079410ebf20ef21dc1ed78e23 /FICS
parent7b6d1973e34327e5b93543222245e81a0f73bc99 (diff)
Changed struct member types
Diffstat (limited to 'FICS')
-rw-r--r--FICS/gamedb.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/FICS/gamedb.h b/FICS/gamedb.h
index 2d0edc8..8dc84d3 100644
--- a/FICS/gamedb.h
+++ b/FICS/gamedb.h
@@ -27,6 +27,7 @@
#ifndef _GAMEDB_H
#define _GAMEDB_H
+#include <stdint.h>
#include <time.h>
#include "board.h"
@@ -140,9 +141,9 @@ typedef struct _game {
move_t *examMoveList; // Extra movelist for examine
int examMoveListSize;
- unsigned int startTime; // The relative time the game started
- unsigned int lastMoveTime; // Last time a move was made
- unsigned int lastDecTime; // Last time a players clock was
+ uint64_t startTime; // The relative time the game started
+ uint64_t lastMoveTime; // Last time a move was made
+ uint64_t lastDecTime; // Last time a players clock was
// decremented
int result;