aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2007-12-09 11:23:06 +0000
committerChris Apers2007-12-09 11:23:06 +0000
commitf9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe (patch)
tree4fdc7924b2847689911a7f8b4feeb7fb8a8e1b7c /backends
parentfd1f39f12e262a413217ec0e1f7f014e96865668 (diff)
downloadscummvm-rg350-f9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe.tar.gz
scummvm-rg350-f9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe.tar.bz2
scummvm-rg350-f9dbfd0daf2c7781704cc7c9a30f65fc75f0ecfe.zip
Remove obsolete 68k version related code
svn-id: r29785
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/PalmOS/Src/launcher/app.cpp19
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