Oliver
Oliver
> Out of curiosity, which map did you try to load? It seems to have an older static prop format than ones I'm using for testing. I was actually trying...
Seems like this compiles in 0.9.0 but fails in 0.10.0 and trunk [https://godbolt.org/z/nG6s6sK4e](https://godbolt.org/z/nG6s6sK4e). The following error is emitted: ``` LLVM ERROR: unsupported x86 interrupt prototype ``` Not sure if this...
What about `` for `partial_cmp` and `` for `cmp`? Having a `?` makes it seem like we're propagating the option while `~` has a much more... "partial" feeling to me....
Found the solution: ```rust #[cfg(target_os = "macos")] unsafe { surface .surface .as_hal_mut::(|surface| { if let Some(surface) = surface { surface.present_with_transaction = true } }); } ```
One thing I want to know is if this a problem on different platforms (also how easy it would be to fix for them). I can test on Windows 11...