Merge branch 'remove_warning' into 'master'

fix windows result check

See merge request veloren/veloren!1378
This commit is contained in:
Imbris 2020-09-12 16:23:03 +00:00
commit e59439cd8b

View File

@ -121,7 +121,8 @@ fn main() {
std::thread::spawn(move || {
mbox();
})
.join();
.join()
.unwrap();
#[cfg(not(target_os = "windows"))]
mbox();