mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-12-15 02:28:05 +00:00
rogueviz::fifteen:: removed some debug
This commit is contained in:
@@ -399,10 +399,8 @@ void load_fifteen(hstream& f) {
|
|||||||
int num;
|
int num;
|
||||||
f.read(num);
|
f.read(num);
|
||||||
fif.clear();
|
fif.clear();
|
||||||
println(hlog, "read num = ", num);
|
|
||||||
for(int i=0; i<num; i++) {
|
for(int i=0; i<num; i++) {
|
||||||
int32_t at = f.get<int>();
|
int32_t at = f.get<int>();
|
||||||
println(hlog, "at = ", at);
|
|
||||||
cell *c = mapstream::cellbyid[at];
|
cell *c = mapstream::cellbyid[at];
|
||||||
auto& cd = fif[c];
|
auto& cd = fif[c];
|
||||||
f.read(cd.target);
|
f.read(cd.target);
|
||||||
@@ -415,7 +413,6 @@ void load_fifteen(hstream& f) {
|
|||||||
if(nonorientable)
|
if(nonorientable)
|
||||||
f.read(cd.currentmirror);
|
f.read(cd.currentmirror);
|
||||||
cd.currentdir = mapstream::fixspin(mapstream::relspin[at], cd.currentdir, c->type, f.vernum);
|
cd.currentdir = mapstream::fixspin(mapstream::relspin[at], cd.currentdir, c->type, f.vernum);
|
||||||
println(hlog, "assigned ", cd.current, " to ", c);
|
|
||||||
}
|
}
|
||||||
compute_triangle_markers();
|
compute_triangle_markers();
|
||||||
enable();
|
enable();
|
||||||
|
|||||||
Reference in New Issue
Block a user