diff --git a/src/main.rs b/src/main.rs index 2cb601a..175ca6a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -111,7 +111,7 @@ fn set_lark_path(new_path: &Path) -> std::io::Result<()> { use winreg::enums::*; use winreg::RegKey; let hkcu = RegKey::predef(HKEY_CURRENT_USER); - let (key, _disp) = hkcu.create_subkey("SOFTWARE\\Ion\\Larkinator")?; + let (key, _disp) = hkcu.create_subkey("SOFTWARE\\Ion\\Malarkey")?; key.set_value("Lark Path", &new_path.as_os_str())?; Ok(()) }