From a2073d97a22762b3ea56d67caa3693aaff112abb Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 28 Jun 2019 10:00:21 +0200 Subject: [PATCH] hr::SDL_GetTicks() in hyper.h --- hyper.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hyper.h b/hyper.h index b6f66440..db1919c8 100644 --- a/hyper.h +++ b/hyper.h @@ -5067,6 +5067,10 @@ template void print(hstream& hs, const tuple & t) { inline void special_log(char c) { putchar(c); } #endif +#if !CAP_SDL && !ISFAKEMOBILE +int SDL_GetTicks(); +#endif + struct logger : hstream { int indentation; bool doindent;