Hi everyone, so all is in the name of the subject.
i heard that 's possible to choose the difficulty of this version of loom but i don't know how, an idea ?
Thanks.
Loom Fm Towns : how choose difficulty ?
Moderator: ScummVM Team
- Harrypoppins
- Posts: 124
- Joined: Sat Apr 25, 2009 1:23 pm
- Harrypoppins
- Posts: 124
- Joined: Sat Apr 25, 2009 1:23 pm
- eriktorbjorn
- ScummVM Developer
- Posts: 3557
- Joined: Mon Oct 31, 2005 7:39 am
Well, I suppose you could add a check to the part of ScummVM that checks for the boot param setting, i.e. ScummEngine::ScummEngine(). Something like this, I guess:Harrypoppins wrote:No, and i don't if it's possible to add this option at some ScummVM release
Code: Select all
if (_game.id == GID_LOOM && _game.platform == Common::kPlatformFMTowns) {
if (!ConfMan.hasKey("boot_param")) {
_bootParam = displaySomeGUIDialogHere( ... );
}
}
But I don't have this version of the game, so I don't know.