From 2909c8fff6febf736ebddaf11fc5f40276cc3e5d Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Wed, 15 Dec 2004 12:30:58 +0000 Subject: - Move MAXPATHLEN includes/defines into common location - Save files are now stored in $HOME/.scummvm/ by default if no other save path is specified on non MacOS X unices. svn-id: r16060 --- common/config-manager.cpp | 5 ----- common/stdafx.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'common') diff --git a/common/config-manager.cpp b/common/config-manager.cpp index 81e8ed15e2..bdd0fe210d 100644 --- a/common/config-manager.cpp +++ b/common/config-manager.cpp @@ -25,7 +25,6 @@ #include "common/config-manager.h" #if defined(UNIX) -#include #ifdef MACOSX #define DEFAULT_CONFIG_FILE "Library/Preferences/ScummVM Preferences" #else @@ -35,10 +34,6 @@ #define DEFAULT_CONFIG_FILE "scummvm.ini" #endif -#ifndef MAXPATHLEN -#define MAXPATHLEN 256 -#endif - #define MAXLINELEN 256 static char *ltrim(char *t) { diff --git a/common/stdafx.h b/common/stdafx.h index 2d59efe688..f59fb168d2 100644 --- a/common/stdafx.h +++ b/common/stdafx.h @@ -99,6 +99,7 @@ #if !defined(macintosh) #include #include +#include #endif #if !defined (__BEOS__) #include @@ -119,4 +120,8 @@ #endif +#ifndef MAXPATHLEN +#define MAXPATHLEN 256 +#endif + #endif -- cgit v1.2.3