emscripten: fix warnings in tests

This commit is contained in:
Anonymous Maarten
2022-11-01 13:10:46 +01:00
committed by Anonymous Maarten
parent a71e558d85
commit d8884b845e
4 changed files with 10 additions and 3 deletions

View File

@@ -100,7 +100,9 @@ loop()
int
main(int argc, char *argv[])
{
#ifndef __EMSCRIPTEN__
Uint32 then, now, frames;
#endif
/* Enable standard application logging */
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
@@ -135,10 +137,12 @@ main(int argc, char *argv[])
srand((unsigned int)time(NULL));
#ifndef __EMSCRIPTEN__
/* Main render loop */
frames = 0;
then = SDL_GetTicks();
done = 0;
#endif
SDL_Log("Rendering %u frames offscreen\n", max_frames);