From 94c9c89ad0441537d8b1ad72d04c12c0b293ced4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 22 Jun 2018 00:23:50 +0200 Subject: [PATCH] Enable thread name collection on old windows SDKs. --- common/TracySystem.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/TracySystem.hpp b/common/TracySystem.hpp index a83a93ba..d5e98ecd 100644 --- a/common/TracySystem.hpp +++ b/common/TracySystem.hpp @@ -2,7 +2,7 @@ #define __TRACYSYSTEM_HPP__ #ifdef TRACY_ENABLE -# if defined __ANDROID__ || defined __CYGWIN__ || defined __APPLE__ || defined _GNU_SOURCE +# if defined __ANDROID__ || defined __CYGWIN__ || defined __APPLE__ || defined _GNU_SOURCE || ( defined _WIN32 && !defined NTDDI_WIN10_RS2 ) # define TRACY_COLLECT_THREAD_NAMES # endif #endif