aboutsummaryrefslogtreecommitdiff
path: root/apps/console/src/bin/padc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/console/src/bin/padc.rs')
-rw-r--r--apps/console/src/bin/padc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/console/src/bin/padc.rs b/apps/console/src/bin/padc.rs
index e34fee1..9194e5c 100644
--- a/apps/console/src/bin/padc.rs
+++ b/apps/console/src/bin/padc.rs
@@ -686,7 +686,7 @@ fn manage_keys(data: &mut LocalData, cmds: KeyManageCommands, get_map: fn(game:
}
fn local_config() -> PathBuf {
- current_dir().unwrap().join("../../../../nogamepads.yaml")
+ current_dir().unwrap().join("./nogamepads.yaml")
}
fn read() -> LocalData {
@@ -734,4 +734,4 @@ fn hsv_to_hex(h: i32, s: f64, v: f64) -> String {
let g = ((g + m) * 255.0).round() as u8;
let b = ((b + m) * 255.0).round() as u8;
format!("#{:02X}{:02X}{:02X}", r, g, b)
-} \ No newline at end of file
+}