diff options
author | Max Horn | 2010-05-31 18:28:26 +0000 |
---|---|---|
committer | Max Horn | 2010-05-31 18:28:26 +0000 |
commit | 443c0d4f935ce908caf79bdc94183ad5214dc7c1 (patch) | |
tree | 8952234bde6a53cdfa60acdc1500cd9fadc3cc2e /backends/platform/ds/arm9 | |
parent | 6c44df455ecbdd1a5793cbf2c3670491cc18bbd8 (diff) | |
download | scummvm-rg350-443c0d4f935ce908caf79bdc94183ad5214dc7c1.tar.gz scummvm-rg350-443c0d4f935ce908caf79bdc94183ad5214dc7c1.tar.bz2 scummvm-rg350-443c0d4f935ce908caf79bdc94183ad5214dc7c1.zip |
DS: Use gScummVMVersion in dsmain.cpp; merge 1.1.1 changes in readme_ds.txt
svn-id: r49359
Diffstat (limited to 'backends/platform/ds/arm9')
-rw-r--r-- | backends/platform/ds/arm9/dist/readme_ds.txt | 6 | ||||
-rw-r--r-- | backends/platform/ds/arm9/source/dsmain.cpp | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/backends/platform/ds/arm9/dist/readme_ds.txt b/backends/platform/ds/arm9/dist/readme_ds.txt index 191b358f78..c4f1263452 100644 --- a/backends/platform/ds/arm9/dist/readme_ds.txt +++ b/backends/platform/ds/arm9/dist/readme_ds.txt @@ -41,6 +41,10 @@ Visit the main ScummVM website <http://www.scummvm.org> What's New? ------------------------------------------------------------------------ +ScummVM DS 1.1.1 + + * Bugfix release: no new features + ScummVM DS 1.1.0 * New games are supported in this stable build: Return to Zork, Rodney's @@ -319,7 +323,7 @@ CANNOT DO THIS. ------------------------------------------------------------------------ I'm glad you asked. Here is a list of the compatible games in version -1.1.0. Demo versions of the games listed should work too. +1.1.1. Demo versions of the games listed should work too. Flight of the Amazon Queen, Beneath a Steel Sky, and Lure of the Temptress have generously been released as freeware by the original diff --git a/backends/platform/ds/arm9/source/dsmain.cpp b/backends/platform/ds/arm9/source/dsmain.cpp index 4828ae2192..5a63e5f08f 100644 --- a/backends/platform/ds/arm9/source/dsmain.cpp +++ b/backends/platform/ds/arm9/source/dsmain.cpp @@ -103,6 +103,7 @@ #include "profiler/cyg-profile.h" #endif #include "backends/fs/ds/ds-fs.h" +#include "base/version.h" #include "engine.h" extern "C" void OurIntrMain(void); @@ -3162,7 +3163,7 @@ int main(void) { consolePrintf("-------------------------------\n"); consolePrintf("ScummVM DS\n"); consolePrintf("Ported by Neil Millstone\n"); - consolePrintf("Version 1.1.0 "); + consolePrintf("Version %s ", gScummVMVersion); #if defined(DS_BUILD_A) consolePrintf("build A\n"); consolePrintf("Lucasarts SCUMM games (SCUMM)\n"); |