Malifox
Malifox
@RaphaelIT7 For crash 2, I made the following change to: https://github.com/misyltoad/VPhysics-Jolt/blob/9f3bff409fdf1c5e997f4619d42c95703e4c12bd/vphysics_jolt/vjolt_collide.cpp#L826 ```Diff - indexedTriangleList.resize( meshList.indexCount * 2 ); + indexedTriangleList.resize( meshList.indexCount / 3 * 2 ); ``` Seemed to fix...
This actually seems to be a bug. `any` shouldn't accept an array as an argument and doesn't in 1.11. I'd guess it works here because the enum struct is passed...
This seems to be fixed in 6.15-rc7, specifically by: https://github.com/torvalds/linux/commit/09db7a4d287d1a2bcfc04df023c103d1213a0518. I'm not seeing the error occur anymore after compiling this version for WSL. I have no idea when it could...