Thread: v0.2 is up
View Single Post
Old 08-25-2008, 02:19 PM   #8
Dan
up here in my tree
 
Dan's Avatar
 
Join Date: Jan 2005
Location: warehouse
Posts: 667
Default

MAX_PATH is an integer that defines an outdated maximum length for file paths (256 chars).

To fix this on nix you just include limits.h, afaik.

Or you could just #define MAX_PATH 256 // (or a larger number if you are feeling bold)
Dan is offline   Reply With Quote