From 9992253bd3a56981ccc2c3992b2057348be99ae3 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 31 Aug 2024 09:06:52 -0700 Subject: vcr: update stale comment about layer count 8 layers is no longer supported as a future expansion path... --- src/vcr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vcr.c b/src/vcr.c index 920ec29..3fb9a9d 100644 --- a/src/vcr.c +++ b/src/vcr.c @@ -145,7 +145,7 @@ typedef struct vcr_t { } xlib; #endif /* USE_XLIB */ struct { - uint8_t *bits; /* .pitch * height bytes are used to represent the coverage status of up to 8 layers */ + uint8_t *bits; /* .pitch * height bytes are used to represent the coverage status of up to 4 layers (was 8 until nibbles happened) */ uint8_t *tmp; /* .pitch * VCR_ROW_HEIGHT bytes for a row's worth of temporary storage */ int pitch; /* "pitch" of mem surface in bytes, which is half the width rounded up to an even number divisible by two. */ } mem; -- cgit v1.2.3