1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

do not exit the game if calc_relative_matrix fails on the sphere

This commit is contained in:
Zeno Rogue 2018-04-22 11:13:42 +02:00
parent 89841a6717
commit 8cbabb285d

View File

@ -3347,7 +3347,7 @@ transmatrix calc_relative_matrix(cell *c2, cell *c1) {
return inverse(gmatrix0[c1]) * gmatrix0[c2];
else {
printf("error: gmatrix0 not known\n");
exit(1);
return Id;
}
}