summaryrefslogtreecommitdiff
path: root/crates/renderer/src/overlay/shader.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-06-04 18:49:58 -0400
committerLLLL Colonq <llll@colonq>2026-06-04 18:50:57 -0400
commit2a8b8e6392d87247a5e7b73773daeece98fa0a73 (patch)
tree60ba094d9e3d47c9695af32aa4b7ce9f9a8695c3 /crates/renderer/src/overlay/shader.rs
parent5bdcffbe94fdc3ce9a12b3ae61e7bff3bcb2f17a (diff)
Update
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 b30242f..05374e9 100644
--- a/crates/renderer/src/overlay/shader.rs
+++ b/crates/renderer/src/overlay/shader.rs
@@ -105,7 +105,7 @@ impl overlay::Overlay for Overlay {
authors.push(format!("music by {}", a));
}
let astr: String = authors.join(", ");
- ost.assets.font.render_text(ctx, st, &glam::Vec2::new(0.0, 0.0), &astr);
+ ost.assets.font.render_text_at(ctx, st, glam::Vec2::new(0.0, 0.0), &astr, font::BitmapParams::default());
Ok(())
}
}