diff options
author | Fabio Battaglia | 2009-05-27 09:52:32 +0000 |
---|---|---|
committer | Fabio Battaglia | 2009-05-27 09:52:32 +0000 |
commit | c0d13da750b2579cf94663ff2224a3d2971e91be (patch) | |
tree | e888fe1270787aa1d5e5b899ad0da1f0922da986 | |
parent | 4dccd309e289113bff4dea162286efc6d85d8a8a (diff) | |
download | scummvm-rg350-c0d13da750b2579cf94663ff2224a3d2971e91be.tar.gz scummvm-rg350-c0d13da750b2579cf94663ff2224a3d2971e91be.tar.bz2 scummvm-rg350-c0d13da750b2579cf94663ff2224a3d2971e91be.zip |
sword2: base psx demo detection on screens.clu, and let the user decide between full and demo version at the time of adding the game
svn-id: r40937
-rw-r--r-- | engines/sword2/sword2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword2/sword2.cpp b/engines/sword2/sword2.cpp index 01e6d432cf..d0e7e61ef6 100644 --- a/engines/sword2/sword2.cpp +++ b/engines/sword2/sword2.cpp @@ -69,7 +69,7 @@ static const GameSettings sword2_settings[] = { {"sword2", "Broken Sword 2: The Smoking Mirror", 0, "players.clu" }, {"sword2alt", "Broken Sword 2: The Smoking Mirror (alt)", 0, "r2ctlns.ocx" }, {"sword2psx", "Broken Sword 2: The Smoking Mirror (PlayStation)", 0, "screens.clu"}, - {"sword2psxdemo", "Broken Sword 2: The Smoking Mirror (PlayStation/Demo)", Sword2::GF_DEMO, "rdemo.str"}, + {"sword2psxdemo", "Broken Sword 2: The Smoking Mirror (PlayStation/Demo)", Sword2::GF_DEMO, "screens.clu"}, {"sword2demo", "Broken Sword 2: The Smoking Mirror (Demo)", Sword2::GF_DEMO, "players.clu" }, {NULL, NULL, 0, NULL} }; |