diff options
author | Max Horn | 2003-06-06 22:51:33 +0000 |
---|---|---|
committer | Max Horn | 2003-06-06 22:51:33 +0000 |
commit | 4b227da824c984fca082d2c6f90ed13cfaa0dd09 (patch) | |
tree | d5ef3ed3dd32861bce4a5a7a8b9588a909084240 /sky | |
parent | 15d58d9f52d4e410b4aa1578bce549d21c9c25f3 (diff) | |
download | scummvm-rg350-4b227da824c984fca082d2c6f90ed13cfaa0dd09.tar.gz scummvm-rg350-4b227da824c984fca082d2c6f90ed13cfaa0dd09.tar.bz2 scummvm-rg350-4b227da824c984fca082d2c6f90ed13cfaa0dd09.zip |
Preparations for removing GF_AFTER_V? flags
svn-id: r8364
Diffstat (limited to 'sky')
-rw-r--r-- | sky/sky.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sky/sky.cpp b/sky/sky.cpp index d4d6075638..bd402f826c 100644 --- a/sky/sky.cpp +++ b/sky/sky.cpp @@ -40,8 +40,8 @@ extern bool draw_keyboard; static const VersionSettings sky_settings[] = { /* Beneath a Steel Sky */ - {"sky", "Beneath a Steel Sky", GID_SKY_FIRST, 99, 99, 99, 0, "sky.dsk" }, - {NULL, NULL, 0, 0, 0, 0, 0, NULL} + {"sky", "Beneath a Steel Sky", GID_SKY_FIRST, 99, 0, "sky.dsk" }, + {NULL, NULL, 0, 0, 0, NULL} }; const VersionSettings *Engine_SKY_targetList() { @@ -59,7 +59,7 @@ SystemVars SkyState::_systemVars = {0, 0, 0, 0, 4316}; SkyState::SkyState(GameDetector *detector, OSystem *syst) : Engine(detector, syst) { - _game = detector->_gameId; + _game = detector->_game.id; if (!_mixer->bindToSystem(syst)) warning("Sound initialisation failed."); |