fix windows

This commit is contained in:
Rph :3 2025-04-03 23:03:33 +02:00
parent f6c453bfaf
commit da43c4be97
No known key found for this signature in database

View File

@ -18,7 +18,7 @@ fn get_steam_root() -> anyhow::Result<PathBuf> {
fn get_steam_root() -> anyhow::Result<PathBuf> {
use registry::{self, Security, Data};
let key = registry::Hive::LocalMachine.open(r"\SOFTWARE\Wow6432Node\Valve\Steam", Security::Read)?;
let key = registry::Hive::LocalMachine.open(r"SOFTWARE\Wow6432Node\Valve\Steam", Security::Read)?;
let value = match key.value("InstallPath")? {
Data::String(s) => Some(s.to_string_lossy()),
Data::ExpandString(s) => Some(s.to_string_lossy()),