diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-25 18:47:27 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-25 18:47:27 (GMT) |
| commit | 79727c91936197bbb62669d2dc4dbc0125c8a783 (patch) | |
| tree | 755f3ca6eab9f6987bbff4e5895ca8c50b816b1b /src/simulation/elements/CONV.cpp | |
| parent | a033fe7e496cfb5c6f4ec78e607408418858e765 (diff) | |
| download | powder-79727c91936197bbb62669d2dc4dbc0125c8a783.zip powder-79727c91936197bbb62669d2dc4dbc0125c8a783.tar.gz | |
Fix for previous commits
Diffstat (limited to 'src/simulation/elements/CONV.cpp')
| -rw-r--r-- | src/simulation/elements/CONV.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simulation/elements/CONV.cpp b/src/simulation/elements/CONV.cpp index de31d73..a3e50cf 100644 --- a/src/simulation/elements/CONV.cpp +++ b/src/simulation/elements/CONV.cpp @@ -72,7 +72,7 @@ int Element_CONV::update(UPDATE_FUNC_ARGS) } } } - else if(parts[i].ctype>0 && parts[i].ctype<PT_NUM && sim->elements[parts[i].ctype]->Enabled && parts[i].ctype!=PT_CONV) { + else if(parts[i].ctype>0 && parts[i].ctype<PT_NUM && sim->elements[parts[i].ctype].Enabled && parts[i].ctype!=PT_CONV) { for (rx=-1; rx<2; rx++) for (ry=-1; ry<2; ry++) if (x+rx>=0 && y+ry>=0 && x+rx<XRES && y+ry<YRES) |
