From c5ddd61d075edbfe985a5ddda990b6a69cc4d293 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Wed, 1 Oct 2014 15:56:00 -0400 Subject: [PATCH] use real 64-bit type --- src/io/timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/timer.cpp b/src/io/timer.cpp index c27e7b8..9d903e9 100644 --- a/src/io/timer.cpp +++ b/src/io/timer.cpp @@ -124,7 +124,7 @@ void timer_init() fix timer_get_fixed_seconds() { - __extension__ long long a = SDL_GetTicks(); + Sint64 a = SDL_GetTicks(); a *= 65536; return (fix)(a / 1000); -- 2.39.2