From 2b92b00091f5006baa9ab11f05e43e6351bd1519 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 5 Apr 2025 20:12:05 +0200 Subject: Changed struct member types --- FICS/gamedb.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'FICS') 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 #include #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; -- cgit v1.2.3