aboutsummaryrefslogtreecommitdiff
path: root/sky/disk.cpp
diff options
context:
space:
mode:
authorChris Apers2005-11-05 19:00:15 +0000
committerChris Apers2005-11-05 19:00:15 +0000
commit35748cfe92afabbd5b97aa837e70dd9d545ef069 (patch)
treebbc82c0da44492e130657b0726c01d33ad722c29 /sky/disk.cpp
parent54c47e3985f638caf34eaf432aa19e55fe91a74c (diff)
downloadscummvm-rg350-35748cfe92afabbd5b97aa837e70dd9d545ef069.tar.gz
scummvm-rg350-35748cfe92afabbd5b97aa837e70dd9d545ef069.tar.bz2
scummvm-rg350-35748cfe92afabbd5b97aa837e70dd9d545ef069.zip
PalmOS ifdef
svn-id: r19473
Diffstat (limited to 'sky/disk.cpp')
-rw-r--r--sky/disk.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sky/disk.cpp b/sky/disk.cpp
index 5ccdc1ed95..005a122f16 100644
--- a/sky/disk.cpp
+++ b/sky/disk.cpp
@@ -28,7 +28,7 @@
#include "sky/sky.h"
#include "sky/struc.h"
-#if defined(__PALM_OS__)
+#if defined(PALMOS_68K)
#include "arm/native.h"
#include "arm/macros.h"
#endif
@@ -164,7 +164,7 @@ uint8 *Disk::loadFile(uint16 fileNr) {
if ((fileFlags >> 22) & 0x1) { //do we include the header?
// don't return the file's header
output = uncompDest;
-#ifdef __PALM_OS__
+#ifdef PALMOS_68K
ARM_START(RncDecoderType)
ARM_INIT(SKY_UNPACKM1)
ARM_ADDM(input)
@@ -184,7 +184,7 @@ uint8 *Disk::loadFile(uint16 fileNr) {
memcpy(uncompDest, fileDest, sizeof(dataFileHeader));
output = uncompDest + sizeof(dataFileHeader);
-#ifdef __PALM_OS__
+#ifdef PALMOS_68K
ARM_START(RncDecoderType)
ARM_INIT(SKY_UNPACKM1)
ARM_ADDM(input)