Added LCD font

This commit is contained in:
Nahuel Lofeudo 2026-04-21 08:15:30 +01:00
parent 81c5b5a1af
commit f4587e974f
5 changed files with 22 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/target
/.vscode
Cargo.lock
resources/jd-lcd-rounded.ttf/jd-lcd-rounded.ttf

View File

@ -1,3 +1,9 @@
## Credits:
- LCD Rounded font by Jecko Development (http://www.jeckodevelopment.com)
## Install ARM toolchains:
```

Binary file not shown.

View File

@ -0,0 +1,14 @@
JECKO DEVELOPMENT FONT
This font was created by Jecko Development (http://www.jeckodevelopment.com)
This font has a homepage where this archive and other versions may be found ::
http://www.jeckodevelopment.com/fonts/
This font is released under a Creative Commons Attribution Non-commercial No Derivatives
license (http://creativecommons.org/licenses/by-nc-nd/3.0/).
NOTE FOR FLASH USERS: This font is optimized for
Flash. If the font in this archive is a pixel font, it is best displayed at a
font-size of 64.
Feel free to write us at info@jeckodevelopment.com or visit our website http://www.jeckodevelopment.com

View File

@ -26,7 +26,7 @@ fn main() {
};
let screen_prefs = renderer::structs::Prefs {
font_path: String::from("resources/jd-lcd-rounded.ttf/jd-lcd-rounded.ttf"),
font_path: String::from("resources/jd-lcd-rounded/jd-lcd-rounded.ttf"),
screen_width: 1920,
screen_height: 720,
};