mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-17 12:51:15 +00:00
12 lines
292 B
C
12 lines
292 B
C
#pragma once
|
|
|
|
#include <SDL2/SDL_timer.h>
|
|
|
|
// https://wiki.libsdl.org/SDL3/README-migration#sdl_timerh
|
|
// https://wiki.libsdl.org/SDL3/README-migration#sdl_timerh | SDL_GetTicksNS()
|
|
|
|
#define SDL_GetTicksNS SDL_GetTicks
|
|
|
|
// time is in miliseconds not nanoseconds
|
|
#define SDL_NS_TO_MS(MS) (MS)
|