1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 12:42:41 +01:00

Savestates: Minor optimization of size

This commit is contained in:
Eladash 2022-07-04 22:59:50 +03:00 committed by Megamouse
parent 3fc2194fd5
commit d6cf167d52

View File

@ -364,6 +364,11 @@ static void ppu_initialize_modules(ppu_linkage_info* link, utils::serial* ar = n
{
const auto _module = pair.second;
if (_module->variables.empty())
{
continue;
}
ar(_module->name);
ar(_module->variables.size());