changeset 1659:19331a21da3a

Switched default sync source back to audio as the video option is not ready for prime timeop
author Mike Pavone <pavone@retrodev.com>
date Sun, 30 Dec 2018 21:19:26 -0800
parents fa9ae059e4d3
children c6cc2dae262f
files default.cfg render_sdl.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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");