diff options
author | Chris Apers | 2007-01-14 17:05:43 +0000 |
---|---|---|
committer | Chris Apers | 2007-01-14 17:05:43 +0000 |
commit | 9e4502684cfdd0f447e25356388abb27872d2bc3 (patch) | |
tree | 0bd6c5722a5e3446d28c0abae14d70a9c647083e /backends/platform/PalmOS/Src/launcher/games.cpp | |
parent | efe466040a301e59e788dfb0560ee29cff8a4216 (diff) | |
download | scummvm-rg350-9e4502684cfdd0f447e25356388abb27872d2bc3.tar.gz scummvm-rg350-9e4502684cfdd0f447e25356388abb27872d2bc3.tar.bz2 scummvm-rg350-9e4502684cfdd0f447e25356388abb27872d2bc3.zip |
Added:
- engines location auto-detection
- Apple IIgs platform
svn-id: r25080
Diffstat (limited to 'backends/platform/PalmOS/Src/launcher/games.cpp')
-rw-r--r-- | backends/platform/PalmOS/Src/launcher/games.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/backends/platform/PalmOS/Src/launcher/games.cpp b/backends/platform/PalmOS/Src/launcher/games.cpp index 09d961e631..c5151cf899 100644 --- a/backends/platform/PalmOS/Src/launcher/games.cpp +++ b/backends/platform/PalmOS/Src/launcher/games.cpp @@ -69,7 +69,8 @@ static Err GamUpdateList() { MemSet(&gitCur, sizeof(GameInfoType), 0); - if (version == itemVersion_355 || + if (version == itemVersion_356 || + version == itemVersion_355 || version == itemVersion_354 || version == itemVersion_353 || version == itemVersion_352 || @@ -198,6 +199,11 @@ static Err GamUpdateList() { gitCur.engine = ENGINE_AGOS; } + if (version <= itemVersion_356) { + if (gitCur.platform >= 3) + gitCur.platform++; + } + if (gitCur.musicInfo.volume.palm > 100) gitCur.musicInfo.volume.palm = 50; |