diff options
Diffstat (limited to 'web/hitomezashi_web.c')
-rw-r--r-- | web/hitomezashi_web.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/hitomezashi_web.c b/web/hitomezashi_web.c index 539fa96..0a36a2c 100644 --- a/web/hitomezashi_web.c +++ b/web/hitomezashi_web.c @@ -62,6 +62,10 @@ int EMSCRIPTEN_KEEPALIVE main(void) { SDL_RenderCopy(renderer, texture, NULL, NULL); SDL_RenderPresent(renderer); + // Since this is a short-lived application which is only run on page load, + // we do not need to delay the exit of main by freeing memory - it will be + // reclaimed by the browser automatically. + return Hitomezashi_Web_Result_Success; } |