aboutsummaryrefslogtreecommitdiff
path: root/src/cube_transform_with_switch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cube_transform_with_switch.h')
-rw-r--r--src/cube_transform_with_switch.h6
1 files changed, 3 insertions, 3 deletions
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)
118 case _trans_BLm: 118 case _trans_BLm:
119 return _trans_edges_mirrored(BLm, c); 119 return _trans_edges_mirrored(BLm, c);
120 default: 120 default:
121 LOG("transform error, unknown transformation\n"); 121 LOG("transform error, unknown transformation %" PRIu8 "\n", t);
122 return zero; 122 return zero;
123 } 123 }
124} 124}
@@ -224,7 +224,7 @@ transform_corners(cube_t c, uint8_t t)
224 case _trans_BLm: 224 case _trans_BLm:
225 return _trans_corners_mirrored(BLm, c); 225 return _trans_corners_mirrored(BLm, c);
226 default: 226 default:
227 LOG("transform error, unknown transformation\n"); 227 LOG("transform error, unknown transformation %" PRIu8 "\n", t);
228 return zero; 228 return zero;
229 } 229 }
230} 230}
@@ -330,7 +330,7 @@ transform(cube_t c, uint8_t t)
330 case _trans_BLm: 330 case _trans_BLm:
331 return _trans_mirrored(BLm, c); 331 return _trans_mirrored(BLm, c);
332 default: 332 default:
333 LOG("transform error, unknown transformation\n"); 333 LOG("transform error, unknown transformation %" PRIu8 "\n", t);
334 return zero; 334 return zero;
335 } 335 }
336} 336}

Generated with cgit - Back to sebastiano.tronto.net