From 167768669283620a2a951dcf212890a37cf1d6b8 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Wed, 12 Sep 2012 23:04:46 -0400 Subject: PEGASUS: Disable save compression by default 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) --- engines/pegasus/pegasus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/pegasus/pegasus.cpp b/engines/pegasus/pegasus.cpp index b307a19ec8..cbe2222c83 100644 --- a/engines/pegasus/pegasus.cpp +++ b/engines/pegasus/pegasus.cpp @@ -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; -- cgit v1.2.3