diff options
feat: new music
Diffstat (limited to 'src/render.rs')
-rw-r--r-- | src/render.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render.rs b/src/render.rs index 733f0c0..daf3658 100644 --- a/src/render.rs +++ b/src/render.rs @@ -28,10 +28,10 @@ fn dvd_logo_offset(t: f64, screen_size_x: f64, screen_size_y: f64) -> (f64, f64) pub const START_UWUSPACE: f64 = 0.0; pub const START_BOUNCE: f64 = 0.5; -pub const START_SIN: f64 = 1.5; -pub const START_COMETOCOSIN: f64 = 2.5; +pub const START_SIN: f64 = 12.0; +pub const START_COMETOCOSIN: f64 = 18.0; #[cfg(not(feature = "32k"))] -pub const SCENE_GREETINGS: f64 = 32.0; +pub const SCENE_GREETINGS: f64 = 30.0; #[cfg(not(feature = "32k"))] pub const JUST_DVD: f64 = SCENE_GREETINGS + 28.0; @@ -139,7 +139,7 @@ pub fn render( let mut i = 0.0; let strlen = 43; let mut uwuoffset_x = 0.0; - for c in "Greetings by UwU-Space and /dev/urandom to:".chars() { + for c in "Greetings by UwU-Space to:".chars() { let is_not_uwu = i <= 12.0 || i >= 22.0; let char = if is_not_uwu { FONT_GALMURI.get_char(c) |