mirror of
https://github.com/NinjaCheetah/rustii.git
synced 2026-03-05 04:05:29 -05:00
Added emunand info and install-missing commands to rustii CLI
These were grueling to port. There's just so much printing and format converting to deal with. Ugh. At least it's done now.
This commit is contained in:
@@ -78,8 +78,6 @@ pub fn dec_to_standard(version: u16, title_id: &str, vwii: Option<bool>) -> Opti
|
||||
let map = wii_menu_versions_map(vwii);
|
||||
map.get(&version).cloned()
|
||||
} else {
|
||||
let version_upper = (version as f64 / 256.0).floor() as u16;
|
||||
let version_lower = version % 256;
|
||||
Some(format!("{}.{}", version_upper, version_lower))
|
||||
Some(format!("{}.{}", version >> 8, version & 0xF))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user