Skip to content

Commit

Permalink
Settings: Fix hash cache fields not being compared
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Dec 1, 2024
1 parent 00132c6 commit 9fc9f4b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down

0 comments on commit 9fc9f4b

Please sign in to comment.