1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Disable ThreadedVideo on MacOsX, see #2159

This commit is contained in:
Sergey Lipskiy 2020-01-02 16:41:18 +07:00
parent 24f6a8f469
commit b949958874

View File

@ -25,7 +25,12 @@ void Config::resetToDefaults()
video.fxaa = 0;
video.multisampling = 0;
video.verticalSync = 0;
#if defined(OS_MAC_OS_X)
video.threadedVideo = 0;
#else
video.threadedVideo = 1;
#endif
texture.maxAnisotropy = 0;
texture.bilinearMode = BILINEAR_STANDARD;