some renaming for more consistent terminology (although we might want to reevaluate this): 'target' is what is in your config file; 'game' is what a frontend provide. E.g. the scumm frontend provides the game 'monkeyvga', and my config file has target 'monkeyvga-ger' configured to use that game

svn-id: r10766
This commit is contained in:
Max Horn 2003-10-12 18:40:12 +00:00
parent c3f4bbf34f
commit 36fd7ec445
13 changed files with 87 additions and 85 deletions

View file

@ -76,13 +76,13 @@ extern bool draw_keyboard;
#undef WITH_DEBUG_CHEATS
static const TargetSettings sky_settings[] = {
static const GameSettings sky_settings[] = {
/* Beneath a Steel Sky */
{"sky", "Beneath a Steel Sky", GID_SKY_FIRST, 99, MDT_ADLIB | MDT_NATIVE | MDT_PREFER_NATIVE, 0, "sky.dsk" },
{NULL, NULL, 0, 0, MDT_NONE, 0, NULL}
};
const TargetSettings *Engine_SKY_targetList() {
const GameSettings *Engine_SKY_targetList() {
return sky_settings;
}