You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just had the game crash, first time in a while. CE 1.8.2, Windows 7 64-bit. Just before this happened, I detonated a large cloud of explosive gas - unsure if that was related.
Problem signature:
Problem Event Name: APPCRASH
Application Name: brogue.exe
Application Version: 0.0.0.0
Application Timestamp: 5e88a453
Fault Module Name: msvcrt.dll
Fault Module Version: 7.0.7601.17744
Fault Module Timestamp: 4eeb033f
Exception Code: c0000005
Exception Offset: 000000000000716e
OS Version: 6.1.7601.2.1.0.768.3
Locale ID: 1033
Additional Information 1: e402
Additional Information 2: e40203178aaf3f352719c02485be6bce
Additional Information 3: 233d
Additional Information 4: 233dae01d946a591b7f3271c3753b5eb
Exception code 0xc0000005 is apparently access violation/invalid memory access. The error occurs at PC 0x000000000000716e into msvcrt.dll. I don't really know how to find out what function this is in.
The text was updated successfully, but these errors were encountered:
@tmewett This could be due to out-of-bounds errors in PowerTables.c. I was debugging with the sanitizer and got this error during some intense in-game action:
src/brogue/PowerTables.c:117:12: runtime error: index 204 out of bounds for type 'fixpt [200]'
The functions in this file are not all correctly guarded, e.g POW_REGEN[bonus] with bonus = -10 ...
From tinyrodent:
Exception code 0xc0000005 is apparently access violation/invalid memory access. The error occurs at PC 0x000000000000716e into msvcrt.dll. I don't really know how to find out what function this is in.
The text was updated successfully, but these errors were encountered: