mirror of
https://github.com/yuzu-emu/liftinstall
synced 2024-11-23 16:53:56 +00:00
platform: fix regression...
... that prevents the build on Windows
This commit is contained in:
parent
66e2473a40
commit
fed2d28aa8
1 changed files with 2 additions and 2 deletions
|
@ -301,8 +301,8 @@ fn main() {
|
||||||
let result = match nfd::open_pick_folder(None)
|
let result = match nfd::open_pick_folder(None)
|
||||||
.log_expect("Unable to open folder dialog")
|
.log_expect("Unable to open folder dialog")
|
||||||
{
|
{
|
||||||
Response::Okay(v) => v,
|
Response::Okay(v) => Ok(v),
|
||||||
_ => return,
|
_ => Err(()),
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(not(windows))]
|
#[cfg(not(windows))]
|
||||||
|
|
Loading…
Reference in a new issue