summaryrefslogtreecommitdiff
path: root/src/game/world/draw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/world/draw.cpp')
-rw-r--r--src/game/world/draw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/world/draw.cpp b/src/game/world/draw.cpp
index 9269a21..aad4d09 100644
--- a/src/game/world/draw.cpp
+++ b/src/game/world/draw.cpp
@@ -11,7 +11,7 @@ VEC2 world_project_pos(
GAME_DATA* game,
VEC3 pos
) {
- GL_3D* gl3d = (GL_3D*)game->shaders.gl3d;
+ GL3D* gl3d = (GL3D*)game->shaders.gl3d;
VEC4 clip = { pos.x, pos.z, pos.y, 1.f };
VEC4 ndc;