Update SMDLoader.cpp

GCC compilation on windows was failing. Better to check for Visual c++ than Win32.
This commit is contained in:
Mateusz Paluch
2019-12-22 09:57:02 +01:00
committed by GitHub
parent 66750588cf
commit ae92a34d91

View File

@@ -60,7 +60,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// internal headers
#include "SMDLoader.h"
#ifndef _WIN32
#ifndef _MSC_VER
#define strtok_s strtok_r
#endif