From 3ab37bce7934efa9a89b3e8a91fce7addb3fa763 Mon Sep 17 00:00:00 2001 From: Chris Apers Date: Sat, 8 Oct 2005 21:34:59 +0000 Subject: - PalmOS stuffs - fixed type mismatch error svn-id: r18974 --- scumm/scumm.cpp | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 8b00ab8393..51f384ec6e 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -54,7 +54,7 @@ #include "scumm/scumm.h" #include "scumm/util.h" -#ifdef __PALM_OS__ +#ifdef PALMOS_68K #include "extras/palm-scumm-md5.h" #else #include "scumm/scumm-md5.h" @@ -73,6 +73,12 @@ extern bool isSmartphone(void); #endif +#if (defined(PALMOS_ARM) || defined(PALMOS_DEBUG)) +namespace Graphics { + extern void initfonts(); +} +#endif + static int generateSubstResFileName_(const char *filename, char *buf, int bufsize, int index); using Common::File; @@ -193,11 +199,9 @@ static const ScummGameSettings scumm_settings[] = { {"dig", "The Dig", GID_DIG, 7, 0, MDT_NONE, GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_MULTIPLE_VERSIONS, Common::kPlatformPC}, -#ifndef __PALM_OS__ /* Scumm Version 8 */ {"comi", "The Curse of Monkey Island", GID_CMI, 8, 0, MDT_NONE, GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEFAULT_TO_1X_SCALER | GF_MULTIPLE_VERSIONS, Common::kPlatformWindows}, -#endif #endif @@ -353,7 +357,7 @@ static const ScummGameSettings scumm_settings[] = { // // Please, add new entries sorted alpabetically by string name static const ScummGameSettings multiple_versions_md5_settings[] = { -#ifndef __PALM_OS__ +#ifndef PALMOS_68K {"2e85f7aa054930c692a5b1bed1dfc295", "Backyard Football 2002 (Demo Updated)", GID_HEGAME, 6, 100, MDT_NONE, GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown}, // Football2002 @@ -845,7 +849,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS sprintf(md5str + j*2, "%02x", (int)md5sum[j]); } const MD5Table *elem; -#ifdef __PALM_OS__ +#ifdef PALMOS_68K uint32 arraySize = MemPtrSize((void *)md5table) / sizeof(MD5Table) - 1; #else uint32 arraySize = ARRAYSIZE(md5table) - 1; @@ -1683,7 +1687,7 @@ int ScummEngine::init(GameDetector &detector) { readIndexFile(); -#ifdef __PALM_OS__ +#ifdef PALMOS_68K if (_features & GF_NEW_COSTUMES) res._maxHeapThreshold = gVars->memory[kMemScummNewCostGames]; else @@ -1720,6 +1724,10 @@ int ScummEngine::init(GameDetector &detector) { if (_version >= 5) _sound->setupSound(); +#if (defined(PALMOS_ARM) || defined(PALMOS_DEBUG)) + Graphics::initfonts(); +#endif + // Create debugger if (!_debugger) _debugger = new ScummDebugger(this); @@ -2973,7 +2981,7 @@ static int generateSubstResFileName_(const char *filename, char *buf, int bufsiz num = filename[strlen(filename) - 2]; const char *ext = strrchr(filename, '.'); - size_t len = (ext > 0) ? ext - filename : strlen(filename); + size_t len = ((int)ext > 0) ? ext - filename : strlen(filename); for (int i = index; i < ARRAYSIZE(substResFileNameTable); i++) { if (!scumm_strnicmp(filename, substResFileNameTable[i].winName, len)) { @@ -3238,7 +3246,7 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) { REGISTER_PLUGIN(SCUMM, "Scumm Engine") -#ifdef __PALM_OS__ +#ifdef PALMOS_68K #include "scumm_globals.h" _GINIT(Scumm_md5table) -- cgit v1.2.3