Added LCD font
This commit is contained in:
parent
81c5b5a1af
commit
f4587e974f
|
|
@ -1,3 +1,4 @@
|
||||||
/target
|
/target
|
||||||
/.vscode
|
/.vscode
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
resources/jd-lcd-rounded.ttf/jd-lcd-rounded.ttf
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
## Credits:
|
||||||
|
|
||||||
|
- LCD Rounded font by Jecko Development (http://www.jeckodevelopment.com)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Install ARM toolchains:
|
## Install ARM toolchains:
|
||||||
|
|
||||||
```
|
```
|
||||||
Binary file not shown.
|
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -26,7 +26,7 @@ fn main() {
|
||||||
};
|
};
|
||||||
|
|
||||||
let screen_prefs = renderer::structs::Prefs {
|
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_width: 1920,
|
||||||
screen_height: 720,
|
screen_height: 720,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue