mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
f8fb985737
commit
e9d722ba1a
|
@ -9,8 +9,7 @@
|
|||
WholeProgramOptimization="false"
|
||||
StringPooling="true"
|
||||
MinimalRebuild="true"
|
||||
EnableFunctionLevelLinking="true"
|
||||
DebugInformationFormat="4"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
|
@ -131,10 +131,8 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="3"
|
||||
FavorSizeOrSpeed="1"
|
||||
WholeProgramOptimization="false"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
StringPooling="true"
|
||||
|
|
Loading…
Reference in New Issue