Fix for Issue 57: snprintf undefined on win32

This commit is contained in:
Mikko Mononen 2010-03-24 08:06:53 +00:00
parent a988697cc1
commit ca6bbf1889

View File

@ -27,6 +27,9 @@
#include "imgui.h"
#include "Recast.h"
#ifdef WIN32
#define snprintf _snprintf
#endif
TestCase::TestCase() :
m_tests(0)