1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-23 07:58:09 +00:00

correcting transponed QR code

This commit is contained in:
cf18 2015-01-18 04:23:56 +01:00
parent 62ce3c6988
commit 880f058482

View File

@ -222,9 +222,10 @@ void layoutAddress(const char *address)
if (side > 0 && side <= 29) { if (side > 0 && side <= 29) {
oledInvert(0, 0, (side + 2) * 2, (side + 2) * 2); oledInvert(0, 0, (side + 2) * 2, (side + 2) * 2);
//not 100% sure why this is transponed
for (i = 0; i < side; i++) { for (i = 0; i < side; i++) {
for (j = 0; j< side; j++) { for (j = 0; j< side; j++) {
a = i * side + j; a = j * side + i;
if (bitdata[a / 8] & (1 << (7 - a % 8))) { if (bitdata[a / 8] & (1 << (7 - a % 8))) {
oledClearPixel(2 + i * 2, 2 + j * 2); oledClearPixel(2 + i * 2, 2 + j * 2);
oledClearPixel(3 + i * 2, 2 + j * 2); oledClearPixel(3 + i * 2, 2 + j * 2);