Set zlib to use fast compression for savestate (big speedup for when making savestates).

Disabled Edit and Continue and re-enabled optimizations in devel mode (thought I disabled Edit and Continue earlier, but I guess it didn't get saved/committed correctly).

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@865 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-03-30 18:19:05 +00:00
parent f8fb985737
commit e9d722ba1a
3 changed files with 3 additions and 5 deletions

View File

@ -9,8 +9,7 @@
WholeProgramOptimization="false"
StringPooling="true"
MinimalRebuild="true"
EnableFunctionLevelLinking="true"
DebugInformationFormat="4"
DebugInformationFormat="3"
/>
<Tool
Name="VCLinkerTool"

View File

@ -207,6 +207,7 @@ gzSavingState::gzSavingState( const string& filename ) :
if( m_file == NULL )
throw Exception::FileNotFound();
gzsetparams( m_file, Z_BEST_SPEED, Z_DEFAULT_STRATEGY );
Freeze( m_version );
}

View File

@ -131,10 +131,8 @@
/>
<Tool
Name="VCCLCompilerTool"
Optimization="0"
InlineFunctionExpansion="0"
Optimization="3"
FavorSizeOrSpeed="1"
WholeProgramOptimization="false"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="NDEBUG"
StringPooling="true"