AGOS: Integrate InstallShield support.

This commit is contained in:
Travis Howell 2011-08-28 00:40:55 +10:00 committed by Matthew Hoops
parent f91f0f2756
commit 5346ac18b7
13 changed files with 417 additions and 172 deletions

View file

@ -1019,9 +1019,7 @@ bool AGOSEngine::loadGame(const char *filename, bool restartMode) {
if (restartMode) {
// Load restart state
Common::File *file = new Common::File();
file->open(filename);
f = file;
f = _archives.open(filename);
} else {
f = _saveFileMan->openForLoading(filename);
}
@ -1195,9 +1193,7 @@ bool AGOSEngine_Elvira2::loadGame(const char *filename, bool restartMode) {
if (restartMode) {
// Load restart state
Common::File *file = new Common::File();
file->open(filename);
f = file;
f = _archives.open(filename);
} else {
f = _saveFileMan->openForLoading(filename);
}