aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-17 09:08:06 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-17 09:08:06 +0100
commit2f8d36a33854715828d412792663f355b9e393ae (patch)
treed7cd864f17f91965e80f2cde015b5a5d5e009ecc /src/crepe/system
parentc0dc5f5d785cb4d0b0f5c05174c36fab9eef9cfb (diff)
idk
Diffstat (limited to 'src/crepe/system')
-rw-r--r--src/crepe/system/RenderSystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/RenderSystem.cpp b/src/crepe/system/RenderSystem.cpp
index f2ed97d..9611a9e 100644
--- a/src/crepe/system/RenderSystem.cpp
+++ b/src/crepe/system/RenderSystem.cpp
@@ -84,7 +84,7 @@ void RenderSystem::render_text(){
for (const Text & text : texts) {
if (!text.active) continue;
const Font & res = resource_manager.get<Font>(text.font);
- //ctx.draw_text(text, font);
+ ctx.draw_text(text, res);
}
}