diff --git a/common/stdafx.h b/common/stdafx.h index 2d59efe688c..9a724931293 100644 --- a/common/stdafx.h +++ b/common/stdafx.h @@ -97,6 +97,7 @@ #undef CMD_INVALID #endif #if !defined(macintosh) +#include #include #include #endif diff --git a/common/util.h b/common/util.h index 68c47a1fb50..0df4e54a59d 100644 --- a/common/util.h +++ b/common/util.h @@ -24,8 +24,12 @@ #include "common/scummsys.h" template inline T ABS (T x) { return (x>=0) ? x : -x; } +#if !defined(MIN) template inline T MIN (T a, T b) { return (a inline T MAX (T a, T b) { return (a>b) ? a : b; } +#endif /** * Template method which swaps the vaulues of its two parameters. diff --git a/gui/options.cpp b/gui/options.cpp index f26ba209c8d..6cd4b8d4614 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -427,7 +427,10 @@ void GlobalOptionsDialog::open() { _savePath->setLabel(dir); } else { // Default to the current directory... - char buf[256]; +#if !(defined(MAXPATHLEN)) +#define MAXPATHLEN 1024 +#endif + char buf[MAXPATHLEN]; getcwd(buf, sizeof(buf)); _savePath->setLabel(buf); }