mirror of
https://github.com/libretro/RetroArch
synced 2025-02-20 15:40:44 +00:00
MSVC doesn't have PATH_MAX.
This commit is contained in:
parent
d66e039536
commit
fc87336c45
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user