mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Reduce compression level to 8 for faster compression
This commit is contained in:
parent
1da7689526
commit
3393d13b67
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ void compressed_serialization_file_handler::initialize(utils::serial& ar)
|
||||||
}
|
}
|
||||||
|
|
||||||
m_zs = {};
|
m_zs = {};
|
||||||
ensure(deflateInit2(&m_zs, 9, Z_DEFLATED, 16 + 15, 9, Z_DEFAULT_STRATEGY) == Z_OK);
|
ensure(deflateInit2(&m_zs, ar.expect_little_data() ? 9 : 8, Z_DEFLATED, 16 + 15, 9, Z_DEFAULT_STRATEGY) == Z_OK);
|
||||||
#ifndef _MSC_VER
|
#ifndef _MSC_VER
|
||||||
#pragma GCC diagnostic pop
|
#pragma GCC diagnostic pop
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue