diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/render.rs | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/render.rs b/src/render.rs index 3796292..9e80307 100644 --- a/src/render.rs +++ b/src/render.rs @@ -35,7 +35,7 @@ pub const SCENE_MOAR: f64 = 30.0;  #[cfg(not(feature = "32k"))]  pub const SCENE_GREETINGS: f64 = SCENE_MOAR + 33.0;  #[cfg(not(feature = "32k"))] -pub const JUST_DVD: f64 = SCENE_GREETINGS + 28.0; +pub const JUST_DVD: f64 = SCENE_GREETINGS + 27.0;  pub const PRINT_TIME: bool = true; @@ -153,7 +153,7 @@ pub fn render(            if time_seconds + 0.75 >= (SCENE_GREETINGS - SCENE_MOAR) {              "oh look a 64k rust demo".chars()            } else { -            "Have some scrollers".chars() +            "Have some scrollers: x3".chars()            }          } {            let char: crate::font::RenderableCharacter = FONT_GALMURI.get_char(c); @@ -262,6 +262,7 @@ pub fn render(            vec!["Venty", "Erdit", "Kaede", "dui"],            vec!["Deja", "vimja", "cy", "alu"],            vec!["sashu", "expired bread", "gaben"], +          vec!["Shana", "psykon", "Unlock"],          ] {            offset_y += 24;            let mut offset_x = (f64::from(line_index) * 90.0) + f64::from(win_size.0) |