Skip to content

Commit

Permalink
Fixed bug with ToyTown
Browse files Browse the repository at this point in the history
The say the bottom part was drawn caused a weird line to appear in the
middle of the screen.
  • Loading branch information
vercas committed Feb 4, 2014
1 parent 064effc commit 340b62f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garrysmod/lua/postprocess/toytown.lua
Expand Up @@ -20,7 +20,7 @@ function DrawToyTown( NumPasses, H )
render.UpdateScreenEffectTexture()
surface.DrawTexturedRect( 0, 0, ScrW(), H )
surface.DrawTexturedRectRotated( ScrW() * 0.5, ScrH() - H * 0.5 + 1, ScrW(), H, 180 )
surface.DrawTexturedRectUV(0, ScrH() - H, ScrW(), H, 0, 1, 1, 0)
end
Expand Down

0 comments on commit 340b62f

Please sign in to comment.