In Log.cpp I had to change
toif (file && sv <= m_maxFileSeverity) {
if (msg.back() == '\n')
Because otherwise it crashes when calling `OutputVersioningInfo()` on the line `Output("\n");` which is weird.if (file && sv <= m_maxFileSeverity) {
if (!msg.empty() && msg.back() == '\n')
Later it crashed during loading of the models deep in Assimp (fnarr) with a nonesense callstack.
Before I go digging into all of that and figuring out wtf is going on does anyone ever run the Debug x64 build of Pioneer using CMake and if so do they get these issues?