Skip to content

Commit

Permalink
Merge pull request ddnet#9093 from KebsCS/pr-fix-switch-overlay-text
Browse files Browse the repository at this point in the history
Fix switch overlay text order
  • Loading branch information
def- authored Oct 2, 2024
2 parents 000718e + 21d378e commit 46630de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/client/components/maplayers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1750,9 +1750,9 @@ void CMapLayers::OnRender()
RenderTileLayer(TileLayerCounter - 3, Color, pTMap, pGroup);
if(g_Config.m_ClTextEntities)
{
Graphics()->TextureSet(m_pImages->GetOverlayBottom());
RenderTileLayer(TileLayerCounter - 2, Color, pTMap, pGroup);
Graphics()->TextureSet(m_pImages->GetOverlayTop());
RenderTileLayer(TileLayerCounter - 2, Color, pTMap, pGroup);
Graphics()->TextureSet(m_pImages->GetOverlayBottom());
RenderTileLayer(TileLayerCounter - 1, Color, pTMap, pGroup);
}
}
Expand Down

0 comments on commit 46630de

Please sign in to comment.