(libnx) Enable threaded video by default

This commit is contained in:
twinaphex 2018-10-06 17:34:35 +02:00
parent 31ba215c94
commit cf5b8a5fca

View file

@ -181,7 +181,11 @@ static unsigned swap_interval = 1;
/* Threaded video. Will possibly increase performance significantly
* at the cost of worse synchronization and latency.
*/
#if defined(HAVE_LIBNX)
static const bool video_threaded = true;
#else
static const bool video_threaded = false;
#endif
#if defined(HAVE_THREADS)
#if defined(GEKKO) || defined(PSP)