mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-02 07:23:53 +03: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:
@@ -355,7 +355,7 @@ static void inline deltaloop(void);
|
|||||||
static void cleanup(void);
|
static void cleanup(void);
|
||||||
|
|
||||||
#ifdef __EMSCRIPTEN__
|
#ifdef __EMSCRIPTEN__
|
||||||
void emscriptenloop(void)
|
static void emscriptenloop(void)
|
||||||
{
|
{
|
||||||
timePrev = time_;
|
timePrev = time_;
|
||||||
time_ = SDL_GetTicks();
|
time_ = SDL_GetTicks();
|
||||||
|
|||||||
Reference in New Issue
Block a user