eriktorbjorn
ScummVM Developer

Joined: 31 Oct 2005
Posts: 3136
|
Re: Broken Sword Trilogy Install
quote: Originally posted by Alpha eX
When I try to install through Scummvm it says it can't find a game in the directory. I've had a look on here but no one's having a problem installing the game, just running it.
Can anyone give me some help?
I don't have this release of the game, but I believe the files ScummVM are looking for are probably in the clusters folder, but that it only looks for them directly inside the folder you point it to.
In other words, I'd try moving the files out of clusters and into the main folder.
For reference, this is the files ScummVM looks for.
code:
static const char *g_filesToCheck[NUM_FILES_TO_CHECK] = { // these files have to be found
"swordres.rif", // Mac and PC version
"general.clu", // PC version only
"compacts.clu", // PC version only
"scripts.clu", // PC version only
"general.clm", // Mac version only
"compacts.clm", // Mac version only
"scripts.clm", // Mac version only
"paris2.clm", // Mac version (full game only)
"cows.mad", // this one should only exist in the demo version
"scripts.clm", // Mac version both demo and full game
// the engine needs several more files to work, but checking these should be sufficient
};
Depending on which ones it finds, it determines which version of the game it is. So in your case, it probably just has to find swordres.rif, general.clu, compacts.clu and scripts.clu.
Assuming, of course, that the Wii version of ScummVM supports Broken Sword 1.
|