Settings: Fix hash cache fields not being compared

This commit is contained in:
Stenzek 2024-12-01 16:53:25 +10:00
parent 00132c6070
commit 9fc9f4b9e9
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -782,6 +782,9 @@ bool Settings::TextureReplacementSettings::Configuration::operator==(const Confi
dump_c16_textures == rhs.dump_c16_textures && reduce_palette_range == rhs.reduce_palette_range &&
convert_copies_to_writes == rhs.convert_copies_to_writes &&
replacement_scale_linear_filter == rhs.replacement_scale_linear_filter &&
max_hash_cache_entries == rhs.max_hash_cache_entries &&
max_hash_cache_vram_usage_mb == rhs.max_hash_cache_vram_usage_mb &&
max_replacement_cache_vram_usage_mb == rhs.max_replacement_cache_vram_usage_mb &&
max_vram_write_splits == rhs.max_vram_write_splits &&
max_vram_write_coalesce_width == rhs.max_vram_write_coalesce_width &&
max_vram_write_coalesce_height == rhs.max_vram_write_coalesce_height &&