diff options
author | Chris Apers | 2007-12-09 11:23:06 +0000 |
---|---|---|
committer | Chris Apers | 2007-12-09 11:23:06 +0000 |
commit | f9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe (patch) | |
tree | 4fdc7924b2847689911a7f8b4feeb7fb8a8e1b7c | |
parent | fd1f39f12e262a413217ec0e1f7f014e96865668 (diff) | |
download | scummvm-rg350-f9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe.tar.gz scummvm-rg350-f9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe.tar.bz2 scummvm-rg350-f9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe.zip |
Remove obsolete 68k version related code
svn-id: r29785
-rw-r--r-- | backends/platform/PalmOS/Src/launcher/app.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/backends/platform/PalmOS/Src/launcher/app.cpp b/backends/platform/PalmOS/Src/launcher/app.cpp index 211cbf623d..bcaff049ff 100644 --- a/backends/platform/PalmOS/Src/launcher/app.cpp +++ b/backends/platform/PalmOS/Src/launcher/app.cpp @@ -209,25 +209,6 @@ static void AppStartSetMemory() { PalmGetMemory(0,0,0,&mem); def = (mem > threshold) ? (mem - threshold) * 1024 : 0; gVars->startupMemory = mem; - - // default values - gVars->memory[kMemScummOldCostGames] = (mem >= 550 + threshold) ? 550000 : def; - gVars->memory[kMemScummNewCostGames] = (mem >= 2500 + threshold) ? 2500000 : def; - gVars->memory[kMemSimon1Games] = (mem >= 1000 + threshold) ? 1000000 : def; - gVars->memory[kMemSimon2Games] = (mem >= 2000 + threshold) ? 2000000 : def; - - // set min required values - max(kMemScummOldCostGames, 450000); - max(kMemScummNewCostGames, 450000); - max(kMemSimon1Games, 500000); - max(kMemSimon2Games, 500000); - - // set max required values - min(kMemScummOldCostGames, 550000); - min(kMemScummNewCostGames, 2500000); - min(kMemSimon1Games, 1000000); - min(kMemSimon2Games, 2000000); - } #undef threshold |