mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 15:15:41 +01:00
platform: fix regression...
... that prevents the build on Windows
This commit is contained in:
parent
66e2473a40
commit
fed2d28aa8
@ -301,8 +301,8 @@ fn main() {
|
||||
let result = match nfd::open_pick_folder(None)
|
||||
.log_expect("Unable to open folder dialog")
|
||||
{
|
||||
Response::Okay(v) => v,
|
||||
_ => return,
|
||||
Response::Okay(v) => Ok(v),
|
||||
_ => Err(()),
|
||||
};
|
||||
|
||||
#[cfg(not(windows))]
|
||||
|
Loading…
Reference in New Issue
Block a user