Skip to content

Commit

Permalink
fix being unable to draw METL/PSCN/INST ctype on CRAY
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Nov 7, 2014
1 parent 46eda12 commit a31f4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simulation/Simulation.cpp
Expand Up @@ -2803,7 +2803,7 @@ int Simulation::create_part(int p, int x, int y, int tv)
parts[pmap[y][x]>>8].ctype |= v<<8;
}
}
else if (drawOn == PT_CRAY && drawOn != t && t != PT_PSCN && t != PT_INST && t != PT_METL)
else if (drawOn == PT_CRAY && drawOn != t)
{
parts[pmap[y][x]>>8].ctype = t;
if (t==PT_LIFE && v<NGOL)
Expand Down

0 comments on commit a31f4df

Please sign in to comment.