Skip to content

Commit

Permalink
- corrected transferred sky offsets using ZDoom 2.8.1 source - the sk…
Browse files Browse the repository at this point in the history
…y needed to be offset by 28 units.
  • Loading branch information
madame-rachelle committed Jul 11, 2017
1 parent 2e33165 commit 25ab31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/swrenderer/plane/r_skyplane.cpp
Expand Up @@ -139,7 +139,7 @@ namespace swrenderer
skyangle += FLOAT2FIXED(s->GetTextureXOffset(pos));

// Vertical offset allows careful sky positioning.
skymid = s->GetTextureYOffset(pos);
skymid = s->GetTextureYOffset(pos) - 28.0;

// We sometimes flip the picture horizontally.
//
Expand Down

0 comments on commit 25ab31e

Please sign in to comment.