diff --git a/.gitignore b/.gitignore index ff0d847..d3bd81f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target /.vscode Cargo.lock +resources/jd-lcd-rounded.ttf/jd-lcd-rounded.ttf diff --git a/install.md b/readme.md similarity index 86% rename from install.md rename to readme.md index cb16117..5aa5219 100644 --- a/install.md +++ b/readme.md @@ -1,3 +1,9 @@ +## Credits: + +- LCD Rounded font by Jecko Development (http://www.jeckodevelopment.com) + + + ## Install ARM toolchains: ``` diff --git a/resources/jd_lcd_rounded/jd-lcd-rounded.ttf b/resources/jd_lcd_rounded/jd-lcd-rounded.ttf new file mode 100644 index 0000000..e5e651e Binary files /dev/null and b/resources/jd_lcd_rounded/jd-lcd-rounded.ttf differ diff --git a/resources/jd_lcd_rounded/readme.txt b/resources/jd_lcd_rounded/readme.txt new file mode 100644 index 0000000..676a582 --- /dev/null +++ b/resources/jd_lcd_rounded/readme.txt @@ -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 + + diff --git a/src/main.rs b/src/main.rs index d7ac018..9298934 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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, };