Skip to content

Commit

Permalink
fix/toxic-blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
zhusim222 committed May 16, 2024
1 parent b772a14 commit a9b535f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion games/BelowTheSurface/Resources/bundles/gameresources.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion games/BelowTheSurface/map.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit a9b535f

Please sign in to comment.