font2bitmap 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,8 +65,7 @@ The tool generates a C header file (e.g., `my_font.h`) that defines a `font_t` s
|
|
|
65
65
|
Here's a brief example of what the generated C header file content looks like:
|
|
66
66
|
|
|
67
67
|
```c
|
|
68
|
-
#
|
|
69
|
-
#define FONT_MY_FONT_H
|
|
68
|
+
#pragma once
|
|
70
69
|
|
|
71
70
|
#include <stdint.h>
|
|
72
71
|
#include "font.h"
|
|
@@ -91,8 +90,6 @@ const font_t my_font = {
|
|
|
91
90
|
}
|
|
92
91
|
}
|
|
93
92
|
};
|
|
94
|
-
|
|
95
|
-
#endif // FONT_MY_FONT_H
|
|
96
93
|
```
|
|
97
94
|
|
|
98
95
|
## Limitations
|