From a8f23045fd7a5e9b15dd1d83e97376435e82a9f3 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Sat, 23 Nov 2019 12:54:44 +0700 Subject: [PATCH] Enable threadedVideo option by default. Fixed #2126 Problem with Project64 1.6.1 when close emulator --- src/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.cpp b/src/Config.cpp index 4205c73b..020a466c 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -25,7 +25,7 @@ void Config::resetToDefaults() video.fxaa = 0; video.multisampling = 0; video.verticalSync = 0; - video.threadedVideo = 0; + video.threadedVideo = 1; texture.maxAnisotropy = 0; texture.bilinearMode = BILINEAR_STANDARD;