summaryrefslogtreecommitdiff
path: root/crates/renderer/src/overlay/shader.rs
diff options
context:
space:
mode:
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(())
}
}