# HG changeset patch # User Mike Pavone # Date 1546233566 28800 # Node ID 19331a21da3ac53cfed77a354349669a22290a13 # Parent fa9ae059e4d32f851168c12cb9b610a019bcff04 Switched default sync source back to audio as the video option is not ready for prime timeop diff -r fa9ae059e4d3 -r 19331a21da3a default.cfg --- a/default.cfg Sun Dec 30 21:10:44 2018 -0800 +++ b/default.cfg Sun Dec 30 21:19:26 2018 -0800 @@ -204,7 +204,7 @@ #controls how the emulated system is synced to the host #video provides the smoothest experience when the host and emulated system have similar refresh rates #audio provides lower audio latency, especially when there is a refresh rate mismatch - sync_source video + sync_source audio #set this to random to debug initialization bugs ram_init zero default_region U diff -r fa9ae059e4d3 -r 19331a21da3a render_sdl.c --- a/render_sdl.c Sun Dec 30 21:10:44 2018 -0800 +++ b/render_sdl.c Sun Dec 30 21:19:26 2018 -0800 @@ -1048,7 +1048,7 @@ 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");