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

smartrange area-based

This commit is contained in:
Zeno Rogue
2020-08-20 16:12:04 +02:00
parent c932ae4399
commit 644d20cd89
5 changed files with 22 additions and 2 deletions

View File

@@ -897,7 +897,7 @@ EX ld det3(const transmatrix& T) {
/** determinant */
EX ld det(const transmatrix& T) {
if(GDIM == 2)
retrun det3(T);
return det3(T);
else {
ld det = 1;
transmatrix M = T;