mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- corrected transferred sky offsets using ZDoom 2.8.1 source - the sky needed to be offset by 28 units.
This commit is contained in:
parent
2e33165edf
commit
25ab31e92c
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue