From a9b535f73202f2a8c396d1d9737774ee744948ec Mon Sep 17 00:00:00 2001 From: zhusim222 <164000623+zhusim222@users.noreply.github.com> Date: Thu, 16 May 2024 20:31:30 +1000 Subject: [PATCH] fix/toxic-blocks --- games/BelowTheSurface/Resources/bundles/gameresources.txt | 2 +- games/BelowTheSurface/map.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/games/BelowTheSurface/Resources/bundles/gameresources.txt b/games/BelowTheSurface/Resources/bundles/gameresources.txt index 8336132f..fd345975 100644 --- a/games/BelowTheSurface/Resources/bundles/gameresources.txt +++ b/games/BelowTheSurface/Resources/bundles/gameresources.txt @@ -6,7 +6,7 @@ BITMAP, HalfBlocksBottom, half_blocks.png, 64, 32, 2, 3, 6 BITMAP, Ladder, ladder.png, 64, 64, 1, 1, 1 BITMAP, Pipe, pipes_64.png, 64, 64, 4, 16, 63 BITMAP, Water, water_blocks.png, 64, 64, 2, 6, 12 -BITMAP, Toxic, toxic_blocks.png, 64, 64, 5, 1, 5 +BITMAP, Toxic, toxic_blocks.png, 64, 54, 5, 1, 5 BITMAP, Door, Door.png, 64, 64, 3, 2, 6 BITMAP, HoldPipes, holdable_pipes.png, 64, 64, 6, 6, 33 BITMAP, EmptyHold, holdable_pipes_empty_clear.png, 64, 64, 6, 6, 33 diff --git a/games/BelowTheSurface/map.h b/games/BelowTheSurface/map.h index a6e2e8d3..fe44f14f 100644 --- a/games/BelowTheSurface/map.h +++ b/games/BelowTheSurface/map.h @@ -477,7 +477,7 @@ class LevelOjectsMap for (int j = 0; j < this->map_width; j++) { position.x = j * this->tile_size; - position.y = i * this->tile_size; + position.y = i * this->tile_size + 10; int cell = ((this->map_array[i][j]) - 1) - offset;