diff options
Diffstat (limited to 'src/client/GameSave.cpp')
| -rw-r--r-- | src/client/GameSave.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/GameSave.cpp b/src/client/GameSave.cpp index 7a24c45..9f20b37 100644 --- a/src/client/GameSave.cpp +++ b/src/client/GameSave.cpp @@ -385,8 +385,8 @@ void GameSave::Transform(matrix2d transform, vector2d translate) particles[i].vx = vel.x; particles[i].vy = vel.y; } - for (y=0; y<blockWidth; y++) - for (x=0; x<blockHeight; x++) + for (y=0; y<blockHeight; y++) + for (x=0; x<blockWidth; x++) { pos = v2d_new(x*CELL+CELL*0.4f, y*CELL+CELL*0.4f); pos = v2d_add(m2d_multiply_v2d(transform,pos),translate); |
