fixed texture warp breaking world curvature

This commit is contained in:
Valerie Wolfe 2024-04-21 22:02:02 -04:00
parent 9597f3e525
commit 12fa2ccde8

View file

@ -24,16 +24,16 @@ void main() {
gl_Position = ftransform();
#endif
#ifndef NO_TWARP
#ifdef tWarp
texture_warp();
#endif
#endif
#ifndef NON_WORLD
#if worldCurvature > 0
world_curvature();
#endif
#endif
#ifndef NO_TWARP
#ifdef tWarp
texture_warp();
#endif
#endif
}