summaryrefslogtreecommitdiff
path: root/render_sdl.c
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2018-12-30 21:19:26 -0800
committerMike Pavone <pavone@retrodev.com>2018-12-30 21:19:26 -0800
commit9ada0716b82722c83d463d87ce9a5dacff349262 (patch)
tree660ea2caaedac14fdcfeff2f5b3c80c9545e5530 /render_sdl.c
parentbef22a39e5abd914eb0fa08b994186a588ee94ce (diff)
Switched default sync source back to audio as the video option is not ready for prime timeop
Diffstat (limited to 'render_sdl.c')
-rwxr-xr-xrender_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render_sdl.c b/render_sdl.c
index 19717b0..4a2d0c7 100755
--- a/render_sdl.c
+++ b/render_sdl.c
@@ -1048,7 +1048,7 @@ void window_setup(void)
flags |= SDL_WINDOW_FULLSCREEN_DESKTOP;
}
- tern_val def = {.ptrval = "video"};
+ tern_val def = {.ptrval = "audio"};
char *sync_src = tern_find_path_default(config, "system\0sync_source\0", def, TVAL_PTR).ptrval;
sync_to_audio = !strcmp(sync_src, "audio");