From 959ca7004784997003d56267141972f536c9332b Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Sat, 28 Jan 2012 22:25:02 -0800 Subject: [PATCH] Define MAX_PATH for *nix since it's used all over. --- Sources/Plasma/CoreLib/hsUtils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Plasma/CoreLib/hsUtils.h b/Sources/Plasma/CoreLib/hsUtils.h index f230762a..b213687b 100644 --- a/Sources/Plasma/CoreLib/hsUtils.h +++ b/Sources/Plasma/CoreLib/hsUtils.h @@ -164,6 +164,8 @@ inline hsBool hsCompare(float a, float b, float delta=0.0001); # define hsSnwprintf swprintf # define hsWFopen(name, mode) fopen(hsWStringToString(name), hsWStringToString(mode)) + +# define MAX_PATH 1024 #endif // Useful floating point utilities