From e20e4f550ae373414d9bc106b1615a5c5896c9c4 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 18 Jul 2024 19:39:44 +0200 Subject: Added pre-computation of short h48 positions --- src/cube_transform_with_switch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cube_transform_with_switch.h') diff --git a/src/cube_transform_with_switch.h b/src/cube_transform_with_switch.h index 45e1d64..18c1c8c 100644 --- a/src/cube_transform_with_switch.h +++ b/src/cube_transform_with_switch.h @@ -118,7 +118,7 @@ transform_edges(cube_t c, uint8_t t) case _trans_BLm: return _trans_edges_mirrored(BLm, c); default: - LOG("transform error, unknown transformation\n"); + LOG("transform error, unknown transformation %" PRIu8 "\n", t); return zero; } } @@ -224,7 +224,7 @@ transform_corners(cube_t c, uint8_t t) case _trans_BLm: return _trans_corners_mirrored(BLm, c); default: - LOG("transform error, unknown transformation\n"); + LOG("transform error, unknown transformation %" PRIu8 "\n", t); return zero; } } @@ -330,7 +330,7 @@ transform(cube_t c, uint8_t t) case _trans_BLm: return _trans_mirrored(BLm, c); default: - LOG("transform error, unknown transformation\n"); + LOG("transform error, unknown transformation %" PRIu8 "\n", t); return zero; } } -- cgit v1.3