From 2e2290cc8cc81a96cd6f5571a638a1c244e970fe Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Tue, 31 Dec 2024 13:27:43 -0600 Subject: [PATCH] core_bits, tools --- holly/core_bits.hpp | 2 +- tools/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/holly/core_bits.hpp b/holly/core_bits.hpp index a886de4..c0c1edb 100644 --- a/holly/core_bits.hpp +++ b/holly/core_bits.hpp @@ -76,7 +76,7 @@ constexpr uint32_t fb_concat(uint32_t num) { return (num & 0x3) << 4; } namespace fb_depth { constexpr uint32_t _0555_rgb_16bit = 0 << 2; -constexpr uint32_t _0565_rgb_16bit = 1 << 2; +constexpr uint32_t _565_rgb_16bit = 1 << 2; constexpr uint32_t _888_rgb_24bit_packed = 2 << 2; diff --git a/tools/Makefile b/tools/Makefile index efa6ffa..1b811fa 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -14,7 +14,7 @@ FREETYPE_LDFLAGS = $(shell pkg-config --libs freetype2) FTDI_CFLAGS = $(shell pkg-config --cflags libftdi1) -I. FTDI_LDFLAGS = $(shell pkg-config --libs libftdi1) -all: ttf_outline +all: ftdi_transfer crc32.o: crc32.c $(CC) -std=gnu2x $(CFLAGS) -I. -c $< -o $@