Visual Studio 2019 Project
Posted: Mon Nov 07, 2022 11:00 pm
I tried to give up on using the VS2019 project this time... but could not get the CMake build to work
In Log.cpp I had to change
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?
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?