diff options
| author | François Cartegnie <281376+fcartegnie@users.noreply.github.com> | 2024-06-11 11:29:21 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-11 11:29:21 +0700 |
| commit | 1ae34de744aac664df8780365a549ea31c57ec13 (patch) | |
| tree | 2cef86d7bb4e057a40c1d39c909910f96bc68056 /src/resource.c | |
| parent | 0d4a46593ce616f8a7a9eb93648b279f5dbee70d (diff) | |
| parent | 8815700322c0c10cb0528b047b2c7604c2eeb053 (diff) | |
Merge pull request #13 from kienvo/xbm-support
Add support for .xbm bitmap file
Diffstat (limited to 'src/resource.c')
| -rw-r--r-- | src/resource.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/resource.c b/src/resource.c new file mode 100644 index 0000000..ed4766b --- /dev/null +++ b/src/resource.c @@ -0,0 +1,18 @@ +#include "resource.h" + +#include "res/bluetooth.xbm" +#include "res/foss-asia-2.xbm" + +xbm_t bluetooth = { + .bits = bluetooth_bits, + .w = bluetooth_width, + .h = bluetooth_height, + .fh = 11 +}; + +xbm_t splash = { + .bits = foss_asia_2_bits, + .w = foss_asia_2_width, + .h = foss_asia_2_height, + .fh = 11 +};
\ No newline at end of file |