1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 01:20:37 +00:00

Goldberg no longer warns about centerloc not found in quotient

This commit is contained in:
Zeno Rogue 2018-05-01 00:22:40 +02:00
parent d34d50c87c
commit 55e6fc00c9

View File

@ -596,7 +596,7 @@ namespace gp {
if(c0-cc == d0-dmain && c1-cc == d1-dmain) if(c0-cc == d0-dmain && c1-cc == d1-dmain)
found = true, centerloc = c; found = true, centerloc = c;
} }
if(!found) if(!found && !quotient)
printf("Warning: centerloc not found: %d,%d,%d\n", dmain, d0, d1); printf("Warning: centerloc not found: %d,%d,%d\n", dmain, d0, d1);
center_locs[rel] = centerloc; center_locs[rel] = centerloc;
} }