mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-03 19:27:54 +00:00
removed the MAX_EDGE limitation
This commit is contained in:
@@ -150,13 +150,10 @@ EX namespace netgen {
|
||||
|
||||
for(int i=0; i<CELLS; i++) scan(f, ct[i]);
|
||||
|
||||
for(int i=0; i<CELLS; i++) nei[i].resize(ct[i]);
|
||||
for(int i=0; i<CELLS; i++) nei[i].clear(), nei[i].resize(ct[i], -1);
|
||||
|
||||
for(int i=0; i<CELLS; i++) for(int j=0; j<16; j++) scan(f, vx[i][j]);
|
||||
|
||||
for(int i=0; i<CELLS; i++)
|
||||
for(int j=0; j<7; j++) nei[i][j] = -1;
|
||||
|
||||
while(true) {
|
||||
int a, b, c;
|
||||
scan(f, a, b, c);
|
||||
|
Reference in New Issue
Block a user