Skip to content

Commit

Permalink
clippy clippy clippy clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ceejbot committed Feb 4, 2024
1 parent 947a429 commit a9aaedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controller/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -763,9 +763,9 @@ impl DisplayTweaks {
/// Pluck scaling settings from the display tweaks ini.
pub fn read_ini(&mut self) {
let fpath = std::path::Path::new("Data/SKSE/Plugins/SSEDisplayTweaks.ini");
self.update_from_ini(&fpath);
self.update_from_ini(fpath);
let fpath = std::path::Path::new("Data/SKSE/Plugins/SSEDisplayTweaks_Custom.ini");
self.update_from_ini(&fpath);
self.update_from_ini(fpath);

log::trace!(
"display tweaks scaling: {}; scale={};",
Expand Down

0 comments on commit a9aaedc

Please sign in to comment.