summaryrefslogtreecommitdiff
path: root/ui/text.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/text.cpp')
-rw-r--r--ui/text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/text.cpp b/ui/text.cpp
index 872e3f3..d24c268 100644
--- a/ui/text.cpp
+++ b/ui/text.cpp
@@ -43,7 +43,7 @@ Text::Text(std::string_view s, Position pos, glm::vec3 c) : UIComponent {pos}, c
void
Text::render(const UIShader & shader, const Position &) const
{
- shader.useText(colour);
+ shader.text.use(colour);
glActiveTexture(GL_TEXTURE0);
for (const auto & m : models) {
glBindTexture(GL_TEXTURE_2D, m.texture);