1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-31 22:19:44 +01:00

Declare emscriptenloop as static

It's not going to link with anything in a different translation unit, so
just to make sure, we declare it as static.
This commit is contained in:
Misa 2021-09-20 13:48:49 -07:00
parent 1d0401ef83
commit dbe9f7c2a0

View file

@ -355,7 +355,7 @@ static void inline deltaloop(void);
static void cleanup(void);
#ifdef __EMSCRIPTEN__
void emscriptenloop(void)
static void emscriptenloop(void)
{
timePrev = time_;
time_ = SDL_GetTicks();