summaryrefslogtreecommitdiffstats
path: root/TOOLS/subfont-c/osd/gen_osd_h.c
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/subfont-c/osd/gen_osd_h.c')
-rw-r--r--TOOLS/subfont-c/osd/gen_osd_h.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/TOOLS/subfont-c/osd/gen_osd_h.c b/TOOLS/subfont-c/osd/gen_osd_h.c
deleted file mode 100644
index 1288329c5c..0000000000
--- a/TOOLS/subfont-c/osd/gen_osd_h.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdio.h>
-
-int main()
-{
- int c;
- int cnt;
- printf("unsigned char osd_font_pfb[] = {");
- for (cnt = 0;;cnt++) {
- if (cnt % 16 == 0) printf("\n");
- c = getchar();
- if (c < 0) break;
- printf("0x%02x,", c);
- }
- printf("};\n");
-}