summaryrefslogtreecommitdiff
path: root/crates/renderer/src/overlay/shader.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-09-16 01:36:57 -0400
committerLLLL Colonq <llll@colonq>2025-09-16 01:36:57 -0400
commit4ae21efc81f39ca805cefe5c1af722857f22f255 (patch)
treed877c34b806c61e9480f1c209fd104fffee43988 /crates/renderer/src/overlay/shader.rs
parent4db7ffbaafda249ecafa720e52479d5c7b132edb (diff)
Add poster maker
Diffstat (limited to 'crates/renderer/src/overlay/shader.rs')
-rw-r--r--crates/renderer/src/overlay/shader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/renderer/src/overlay/shader.rs b/crates/renderer/src/overlay/shader.rs
index 11133bf..dd35031 100644
--- a/crates/renderer/src/overlay/shader.rs
+++ b/crates/renderer/src/overlay/shader.rs
@@ -93,7 +93,7 @@ impl overlay::Overlay for Overlay {
authors.push(format!("music by {}", a));
}
let astr: String = authors.join(", ");
- ost.assets.font.render_text(ctx, &glam::Vec2::new(0.0, 0.0), &astr);
+ ost.assets.font.render_text(ctx, st, &glam::Vec2::new(0.0, 0.0), &astr);
Ok(())
}
}