this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

vsync disabled in html by default #1873

nesbox 6718e82e 551cf2d1

+7 -1
+7 -1
src/studio/config.c
··· 24 24 #include "fs.h" 25 25 #include "cart.h" 26 26 27 + #if defined(__EMSCRIPTEN__) 28 + #define DEFAULT_VSYNC 0 29 + #else 30 + #define DEFAULT_VSYNC 1 31 + #endif 32 + 27 33 #if defined (TIC_BUILD_WITH_LUA) 28 34 #include <lua.h> 29 35 #include <lauxlib.h> ··· 229 235 .crt = false, 230 236 #endif 231 237 .volume = MAX_VOLUME, 232 - .vsync = true, 238 + .vsync = DEFAULT_VSYNC, 233 239 .fullscreen = false, 234 240 #if defined(BUILD_EDITORS) 235 241 .devmode = false,