aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Apers2004-10-06 09:54:20 +0000
committerChris Apers2004-10-06 09:54:20 +0000
commit7b0ce255106cfd3cc6550784c7f745588ce42587 (patch)
tree1fd78c058ff0e0618b352068ac8312da6ae7d78e
parent4212ed09ace305cefa22c830638b2284f80b8024 (diff)
downloadscummvm-rg350-7b0ce255106cfd3cc6550784c7f745588ce42587.tar.gz
scummvm-rg350-7b0ce255106cfd3cc6550784c7f745588ce42587.tar.bz2
scummvm-rg350-7b0ce255106cfd3cc6550784c7f745588ce42587.zip
PalmOS update
svn-id: r15432
-rw-r--r--gui/options.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index 7e2eb2e2aa..d291630855 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -32,13 +32,17 @@
#include "common/scaler.h"
#include "sound/mididrv.h"
-#if (!( defined(__DC__) || defined(__GP32__)) && !defined(_MSC_VER))
+#if (!( defined(__PALM_OS__) || defined(__DC__) || defined(__GP32__)) && !defined(_MSC_VER))
#include <sys/param.h>
#include <unistd.h>
#endif
#if !(defined(MAXPATHLEN))
+#ifndef __PALM_OS__
#define MAXPATHLEN 1024
+#else
+#define MAXPATHLEN 256
+#endif
#endif
namespace GUI {