Fixed one more undefined defines errors.

This commit is contained in:
m.milanovic@levi9.com 2014-08-22 16:32:13 +02:00
parent 74c19cce1b
commit 1baf1c0734

View file

@ -984,7 +984,7 @@ void freeDemoData(struct NVGcontext* vg, struct DemoData* data)
nvgDeleteImage(vg, data->images[i]);
}
#if _MSC_VER < 1800
#if defined(_MSC_VER) && (_MSC_VER < 1800)
inline float round(float _f)
{
return float(int(_f) );