From 6845d9b77c81185a50a855c73a9c9f7989ad434c Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Thu, 21 Aug 2014 23:39:29 +0200 Subject: [PATCH] Fix the Mares Puck 2 memory layout descriptor. The Mares Puck 2 uses the same memory layout as the Nemo Wide 2. See commit 322227df7f65da8b4a962f3513e0a10b89cbe29d for more details. --- src/mares_iconhd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mares_iconhd.c b/src/mares_iconhd.c index accefcf..3c0437c 100644 --- a/src/mares_iconhd.c +++ b/src/mares_iconhd.c @@ -280,11 +280,11 @@ mares_iconhd_device_open (dc_device_t **out, dc_context_t *context, const char * // Load the correct memory layout. switch (device->model) { case MATRIX: - case PUCK2: device->layout = &mares_matrix_layout; device->packetsize = 256; break; case PUCKPRO: + case PUCK2: case NEMOWIDE2: device->layout = &mares_nemowide2_layout; device->packetsize = 256;