Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
francisdb committed Apr 22, 2024
1 parent 88fca6f commit 849c086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vpx/gamedata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ impl GameDataJson {
// this data is loaded from a separate file
collections_size: 0,
name: self.name.clone(),
custom_colors: self.custom_colors.clone(),
custom_colors: self.custom_colors,
protection_data: self.protection_data.clone(),
code: StringWithEncoding::empty(),
locked: self.locked,
Expand Down Expand Up @@ -714,7 +714,7 @@ impl GameDataJson {
tone_mapper: game_data.tone_mapper,
bloom_strength: game_data.bloom_strength,
name: game_data.name.clone(),
custom_colors: game_data.custom_colors.clone(),
custom_colors: game_data.custom_colors,
protection_data: game_data.protection_data.clone(),
// code: game_data.code.clone(),
locked: game_data.locked,
Expand Down

0 comments on commit 849c086

Please sign in to comment.