From 1745e110fb4669e526281b16c3aa136c9c994a5e Mon Sep 17 00:00:00 2001 From: doop <56421834+dooplecks@users.noreply.github.com> Date: Mon, 18 May 2026 00:56:14 +0000 Subject: [PATCH] Fix typo --- include/dusk/endian.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/dusk/endian.h b/include/dusk/endian.h index e73eb8da19..d16d0aa80c 100644 --- a/include/dusk/endian.h +++ b/include/dusk/endian.h @@ -241,8 +241,8 @@ struct BE { } void to_host(Mtx23& mtx) const { - for (int i = 0; i < 3; i++) { - for (int j = 0; j < 4; j++) { + for (int i = 0; i < 2; i++) { + for (int j = 0; j < 3; j++) { mtx[i][j] = contents[i][j]; } }