fixed texture warp breaking world curvature

This commit is contained in:
Valerie Wolfe 2024-04-21 22:02:02 -04:00
parent 1506d90dc5
commit 944e474a22

View file

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