diff options
author | Mattias Andrée <maandree@kth.se> | 2024-06-03 18:33:01 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-06-03 18:33:01 +0200 |
commit | fa6dbbe660f6d7b75e098c71db0858bb12c1df24 (patch) | |
tree | 4ee97208e997a860c25c2cd0cc27a0813d42ca44 | |
parent | Empty signed commit (diff) | |
download | libcoopgamma-1.2.3.tar.gz libcoopgamma-1.2.3.tar.bz2 libcoopgamma-1.2.3.tar.xz |
Fix libcoopgamma_get_gamma_recv: return all ramps, not just the last set as the first1.2.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | libcoopgamma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcoopgamma.c b/libcoopgamma.c index 30a68fe..b4a411a 100644 --- a/libcoopgamma.c +++ b/libcoopgamma.c @@ -2358,7 +2358,7 @@ libcoopgamma_get_gamma_recv(libcoopgamma_filter_table_t *restrict table, libcoop table->filters[i].ramps.u8.blue_size = table->blue_size; if (libcoopgamma_ramps_initialise_(&(table->filters[i].ramps), width) < 0) goto fail; - memcpy(table->filters->ramps.u8.red, payload + off, clutsize); + memcpy(table->filters[i].ramps.u8.red, payload + off, clutsize); off += clutsize; } if (off != n) |