diff --git a/src/game.rs b/src/game.rs index 60cdfb8..138a65f 100644 --- a/src/game.rs +++ b/src/game.rs @@ -265,9 +265,9 @@ impl Game { "".to_string() } else { if self.font == Font::Custom { - format!("\n\nDEFAULT FONT {}", self.custom_font.as_ref().unwrap()) + format!("\n\nDEFAULT_FONT {}", self.custom_font.as_ref().unwrap()) } else { - format!("\n\nDEFAULT FONT {}", self.font.to_string().unwrap()) + format!("\n\nDEFAULT_FONT {}", self.font.to_string().unwrap()) } } }