summaryrefslogtreecommitdiff
path: root/vdp.h
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-07-12 19:11:55 -0700
committerMike Pavone <pavone@retrodev.com>2013-07-12 19:11:55 -0700
commitf55d4a3023f1dc520b54bca1cd4bcb334a0ba25c (patch)
treeef7ebbbaccc7cebae0d0db0e0b63f3679b26e6f3 /vdp.h
parentee31d8d00be8f08e446939280cb8d71bb606f899 (diff)
Implement the scroll ring buffer properly without memcpy
Diffstat (limited to 'vdp.h')
-rw-r--r--vdp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/vdp.h b/vdp.h
index c43a2d9..2cad1f3 100644
--- a/vdp.h
+++ b/vdp.h
@@ -147,6 +147,8 @@ typedef struct {
uint8_t flags2;
uint8_t double_res;
uint8_t b32;
+ uint8_t buf_a_off;
+ uint8_t buf_b_off;
uint8_t *tmp_buf_a;
uint8_t *tmp_buf_b;
} vdp_context;