summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2024-08-31 09:06:52 -0700
committerVito Caputo <vcaputo@pengaru.com>2024-08-31 09:06:52 -0700
commit9992253bd3a56981ccc2c3992b2057348be99ae3 (patch)
tree96503335c575594bcbf78aa6375ad005f5b0a826
parent65e1fc57a3d5fbea49474ed37e7f641467ba7a35 (diff)
vcr: update stale comment about layer count
8 layers is no longer supported as a future expansion path...
-rw-r--r--src/vcr.c2
1 files changed, 1 insertions, 1 deletions
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;
© All Rights Reserved