Fix incorrect textures being rendered #29

Closed
Schmarni-Dev wants to merge 17 commits from fix_texture_issues into dev
Showing only changes of commit 77b22789dd - Show all commits

View File

@@ -87,7 +87,7 @@ impl UnownedFd {
}
impl Drop for UnownedFd {
fn drop(&mut self) {
self.0.take().unwrap().into_inner().into_raw_fd();
let _ = self.0.take().unwrap().into_inner().into_raw_fd();
}
}