Skip to content

Commit

Permalink
ACCESS: Use the hires version in Amazon CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Aug 27, 2014
1 parent ff05b42 commit 1590f29
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion engines/access/access.cpp
Expand Up @@ -141,7 +141,11 @@ void AccessEngine::initialize() {

if (isCD()) {
const Common::FSNode gameDataDir(ConfMan.get("path"));
const Common::FSNode cdromDir = gameDataDir.getChild("cdrom");
// The CD version contains two versions of the game.
// - The MCGA version, in the CDROM folder
// - The VESA version, in the TDROM folder
// We use the hires version.
const Common::FSNode cdromDir = gameDataDir.getChild("tdrom");

for (int idx = 0; idx < 15; ++idx) {
Common::String folder = (idx == 0) ? "game" :
Expand Down

0 comments on commit 1590f29

Please sign in to comment.