1
Fork 0
mirror of https://github.com/redstrate/LauncherTweaks.git synced 2025-05-20 17:37:46 +00:00

Remove comment about skidscan

This commit is contained in:
Joshua Goins 2025-05-03 15:22:25 -04:00
parent 38c163a8e2
commit 4f2cb1d747

View file

@ -14,7 +14,6 @@ pub fn find_signature(sig: Signature) -> Option<*mut u8> {
}
pub fn find_symbol(symbol: &str, module: &str) -> Option<*mut u8> {
// TODO: skidscan can do this too...
let module: Vec<u16> = module.encode_utf16().chain(std::iter::once(0)).collect();
let symbol = CString::new(symbol).expect("Failed to parse symbol!");
unsafe {