diff options
feat: and /dev/urandom
(am not part of uwuspace)
| -rw-r--r-- | build.rs | 2 | ||||
| -rw-r--r-- | src/render.rs | 2 | 
2 files changed, 2 insertions, 2 deletions
| @@ -191,7 +191,7 @@ use crate::font::BakedFont;      FontMetadata {        name: "Galmuri",        font: { Font::try_from_vec(fs::read("assets/fonts/Galmuri11.ttf")?).unwrap() }, -      charset: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz29053: %,", +      charset: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz29053: %,/",        scale: Scale::uniform(20.0),      },      FontMetadata { diff --git a/src/render.rs b/src/render.rs index 6be2ba6..c2c84de 100644 --- a/src/render.rs +++ b/src/render.rs @@ -139,7 +139,7 @@ pub fn render(          let mut i = 0.0;          let strlen = 26;          let mut uwuoffset_x = 0.0; -        for c in "Greetings by UwU-Space to:".chars() { +        for c in "Greetings by UwU-Space and /dev/urandom to:".chars() {            let is_not_uwu = i <= 12.0 || i >= 22.0;            let char = if is_not_uwu {              FONT_GALMURI.get_char(c) |