From cbb31452368c228a9971b7b2a080546ec3ad74b8 Mon Sep 17 00:00:00 2001 From: wolfy852 Date: Thu, 28 Feb 2019 18:51:57 -0600 Subject: [PATCH] Stop Linux servers from hanging every 34 hours This drastically increases the amount of time Linux servers can stay up for before hanging. --- src/sdl/i_system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sdl/i_system.c b/src/sdl/i_system.c index f360072a..f92f1f14 100644 --- a/src/sdl/i_system.c +++ b/src/sdl/i_system.c @@ -2974,8 +2974,8 @@ static void I_ShutdownTimer(void) // tic_t I_GetTime (void) { - static Uint32 basetime = 0; - Uint32 ticks = SDL_GetTicks(); + static Uint64 basetime = 0; + Uint64 ticks = SDL_GetTicks(); if (!basetime) basetime = ticks;