WayVR: Do not hard-error in case if the user bought NVIDIA

This commit is contained in:
Aleksander 2025-02-11 22:30:38 +01:00
parent e44872f831
commit 4701d2b734
1 changed files with 0 additions and 2 deletions

View File

@ -185,12 +185,10 @@ impl WayVR {
}
Ok(None) => {
log::warn!("dmabuf: Failed to query render node");
debug_assert!(false);
None
}
Err(err) => {
log::warn!("dmabuf: Failed to get egl device for display: {}", err);
debug_assert!(false);
None
}
};