diff options
author | Max Horn | 2011-06-06 23:04:15 +0200 |
---|---|---|
committer | Max Horn | 2011-06-06 23:04:32 +0200 |
commit | 72080d8972169879416f64a432f4b666207af3f9 (patch) | |
tree | 447a13a3119bb9524cf22824d1a6b54a55db741f | |
parent | 7d984aa53aca5457163a021793633f3db71f5f45 (diff) | |
download | scummvm-rg350-72080d8972169879416f64a432f4b666207af3f9.tar.gz scummvm-rg350-72080d8972169879416f64a432f4b666207af3f9.tar.bz2 scummvm-rg350-72080d8972169879416f64a432f4b666207af3f9.zip |
DC: Allow use of all symbols
-rw-r--r-- | backends/platform/dc/dc-fs.cpp | 2 | ||||
-rw-r--r-- | backends/platform/dc/dcmain.cpp | 5 | ||||
-rw-r--r-- | backends/platform/dc/vmsave.cpp | 5 |
3 files changed, 3 insertions, 9 deletions
diff --git a/backends/platform/dc/dc-fs.cpp b/backends/platform/dc/dc-fs.cpp index 16547456c3..ac709f62b9 100644 --- a/backends/platform/dc/dc-fs.cpp +++ b/backends/platform/dc/dc-fs.cpp @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#define FORBIDDEN_SYMBOL_EXCEPTION_unistd_h +#define FORBIDDEN_SYMBOL_ALLOW_ALL #include "dc.h" #include "backends/fs/abstract-fs.h" diff --git a/backends/platform/dc/dcmain.cpp b/backends/platform/dc/dcmain.cpp index 8f7c989304..47bfb0c15d 100644 --- a/backends/platform/dc/dcmain.cpp +++ b/backends/platform/dc/dcmain.cpp @@ -20,10 +20,7 @@ * */ -// Allow use of stuff in <time.h> -#define FORBIDDEN_SYMBOL_EXCEPTION_time_h - -#define FORBIDDEN_SYMBOL_EXCEPTION_printf +#define FORBIDDEN_SYMBOL_ALLOW_ALL #include <common/scummsys.h> #include <engines/engine.h> diff --git a/backends/platform/dc/vmsave.cpp b/backends/platform/dc/vmsave.cpp index f18f69efa6..e06dd7fa43 100644 --- a/backends/platform/dc/vmsave.cpp +++ b/backends/platform/dc/vmsave.cpp @@ -20,10 +20,7 @@ * */ -// Allow use of stuff in <time.h> -#define FORBIDDEN_SYMBOL_EXCEPTION_time_h - -#define FORBIDDEN_SYMBOL_EXCEPTION_fprintf +#define FORBIDDEN_SYMBOL_ALLOW_ALL #include <common/scummsys.h> #include "engines/engine.h" |