1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-10 22:36:02 +00:00

rate limit some error messages

This commit is contained in:
Zeno Rogue
2025-04-08 13:50:21 +02:00
parent 019711f818
commit 9521a01999
3 changed files with 16 additions and 7 deletions

View File

@@ -1122,7 +1122,7 @@ EX ld det(const transmatrix& T) {
/** warning about incorrect inverse */
void inverse_error(const transmatrix& T) {
println(hlog, "Warning: inverting a singular matrix: ", T);
rate_limited_error("Warning: inverting a singular matrix", lalign(0, ": ", T));
}
/** inverse of a 3x3 matrix */