diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-07-12 19:11:55 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-07-12 19:11:55 -0700 |
commit | f55d4a3023f1dc520b54bca1cd4bcb334a0ba25c (patch) | |
tree | ef7ebbbaccc7cebae0d0db0e0b63f3679b26e6f3 /vdp.h | |
parent | ee31d8d00be8f08e446939280cb8d71bb606f899 (diff) |
Implement the scroll ring buffer properly without memcpy
Diffstat (limited to 'vdp.h')
-rw-r--r-- | vdp.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |