MSVC doesn't have PATH_MAX.

This commit is contained in:
Themaister 2012-01-02 16:03:39 +01:00
parent d66e039536
commit fc87336c45

View File

@ -47,6 +47,10 @@ static inline float roundf(float in)
return in >= 0.0f ? floorf(in + 0.5f) : ceilf(in - 0.5f);
}
#ifndef PATH_MAX
#define PATH_MAX MAX_PATH
#endif
#endif
#endif