Skip to content

Commit

Permalink
PEGASUS: Disable save compression by default
Browse files Browse the repository at this point in the history
So they can be used by the original interpreter more easily (the type/creator codes still need to be set, though -- pegasus_save_types can handle that)
  • Loading branch information
Matthew Hoops committed Sep 13, 2012
1 parent 483989f commit 1677686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/pegasus/pegasus.cpp
Expand Up @@ -616,7 +616,7 @@ Common::Error PegasusEngine::loadGameState(int slot) {

Common::Error PegasusEngine::saveGameState(int slot, const Common::String &desc) {
Common::String output = Common::String::format("pegasus-%s.sav", desc.c_str());
Common::OutSaveFile *saveFile = _saveFileMan->openForSaving(output);
Common::OutSaveFile *saveFile = _saveFileMan->openForSaving(output, false);
if (!saveFile)
return Common::kUnknownError;

Expand Down

0 comments on commit 1677686

Please sign in to comment.