summaryrefslogtreecommitdiff
path: root/src/Renderer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Renderer.cpp')
-rw-r--r--src/Renderer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Renderer.cpp b/src/Renderer.cpp
index dba5a3b..10a9205 100644
--- a/src/Renderer.cpp
+++ b/src/Renderer.cpp
@@ -495,8 +495,8 @@ void Renderer::render_fire()
g = fire_g[j][i];
b = fire_b[j][i];
if (r || g || b)
- for (y=-CELL+1; y<2*CELL; y++)
- for (x=-CELL+1; x<2*CELL; x++)
+ for (y=-CELL; y<2*CELL; y++)
+ for (x=-CELL; x<2*CELL; x++)
this->g->addpixel(i*CELL+x, j*CELL+y, r, g, b, fire_alpha[y+CELL][x+CELL]);
r *= 8;
g *= 8;