diff --git a/!TheEsc/!MapEdit,ff8 b/!TheEsc/!MapEdit,ff8 index e7f2dec..a10053d 100644 Binary files a/!TheEsc/!MapEdit,ff8 and b/!TheEsc/!MapEdit,ff8 differ diff --git a/!TheEsc/c/MapEdit b/!TheEsc/c/MapEdit index 728933d..1577076 100644 --- a/!TheEsc/c/MapEdit +++ b/!TheEsc/c/MapEdit @@ -608,10 +608,6 @@ int game2_tick() { map[screen+1][x][y] = map[0][x][y]; draw_tile(map[screen+1][x][y] & 127,x*100,y*100); - if(((map[screen+1][x][y] >> 7) & 0x01)) - { - draw_sprite("solid",x*100,y*100); - } map_overlay[screen+1][x][y] = map_overlay[0][x][y]; if(map_overlay[screen+1][x][y] > 0) @@ -619,6 +615,11 @@ int game2_tick() draw_tile_trans(map_overlay[screen+1][x][y],x*100,y*100); } + if(((map[screen+1][x][y] >> 7) & 0x01)) + { + draw_sprite("solid",x*100,y*100); + } + udt++; }