mark get_input as windows target

This commit is contained in:
mxve 2023-08-12 06:41:08 +02:00
parent 85e17260eb
commit 98cbc2a9a7

View File

@ -112,6 +112,7 @@ fn launch(file_path: &PathBuf) {
.expect("Failed to wait for the game process to finish"); .expect("Failed to wait for the game process to finish");
} }
#[cfg(windows)]
fn get_input() -> String { fn get_input() -> String {
let mut input = String::new(); let mut input = String::new();
std::io::stdin().read_line(&mut input).unwrap(); std::io::stdin().read_line(&mut input).unwrap();