From e635b18768d92ff53c4794f1faa640fcfef4f3a2 Mon Sep 17 00:00:00 2001 From: Doug Szumski Date: Sun, 21 May 2017 12:48:36 +0100 Subject: [PATCH] parts: Move font.h for hd44780 display to parts directory This file is referenced only by hd44780_glut.c in the parts folder, so move it there and give it a prefix. --- examples/{board_hd77480/font.h => parts/hd44780_font.h} | 0 examples/parts/hd44780_glut.c | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/{board_hd77480/font.h => parts/hd44780_font.h} (100%) diff --git a/examples/board_hd77480/font.h b/examples/parts/hd44780_font.h similarity index 100% rename from examples/board_hd77480/font.h rename to examples/parts/hd44780_font.h diff --git a/examples/parts/hd44780_glut.c b/examples/parts/hd44780_glut.c index b24a9f4..98b7328 100644 --- a/examples/parts/hd44780_glut.c +++ b/examples/parts/hd44780_glut.c @@ -28,7 +28,7 @@ #include #endif -#include "font.h" // generated with gimp +#include "hd44780_font.h" // generated with gimp static GLuint font_texture; static int charwidth = 5; -- 2.39.5