I was playing the game, saved and left minimized for about 6 hours.
Wen I came back, i was able to walk a few steps and then it crashed.
I have no mods nor anything.
[1.1.32] Crash after being minimized for a while (RenderParameters::zoomIn)
[1.1.32] Crash after being minimized for a while (RenderParameters::zoomIn)
- Attachments
-
- factorio-current.log
- (8.67 KiB) Downloaded 356 times
-
- factorio-dump-current.dmp
- (628.67 KiB) Downloaded 345 times
Re: [1.1.32] Crash after being minimized for a while (RenderParameters::zoomIn)
Thanks for the report.
The crash is impossible, so I suspect CPU erred when executing instructions, or the instructions got corrupted in-memory (as executable CRC is correct)
As to why it is impossible:
This is the code, that crashed ... it got to the LOG_ENUM_AND_ABORT line (which is not supposed to ever happen), and logged
But value 2 is ItemLevel::Never, so it should have returned from the function at the line
The crash is impossible, so I suspect CPU erred when executing instructions, or the instructions got corrupted in-memory (as executable CRC is correct)
As to why it is impossible:
Code: Select all
switch (itemLevel)
{
case ItemLevel::Always: return true;
case ItemLevel::Debug: return debugLevel == DebugLevel::Debug;
case ItemLevel::Never: return debugLevel == DebugLevel::Never;
}
LOG_ENUM_AND_ABORT(itemLevel.asEnum());
Code: Select all
19972.435 Error DebugSettings.cpp:179: Unknown enum value: 2
Code: Select all
case ItemLevel::Never: return debugLevel == DebugLevel::Never;