From 654a90993634d3f138fa843962fd7c2166571682 Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Sun, 18 May 2014 19:35:37 +0200 Subject: [PATCH] Fix the Mares Puck Pro memory layout descriptor. The Mares Puck Pro 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 60e3a12..accefcf 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 PUCKPRO: case PUCK2: device->layout = &mares_matrix_layout; device->packetsize = 256; break; + case PUCKPRO: case NEMOWIDE2: device->layout = &mares_nemowide2_layout; device->packetsize = 256;