Browse Source

Merge pull request #9077 from GMagician/2.0.x-bmp-fix

[2.0.x] Clockwise bmp fix
Scott Lahteine 7 years ago
parent
commit
cf3fd21234
No account linked to committer's email address
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/src/lcd/dogm/dogm_bitmaps.h

+ 4
- 4
Marlin/src/lcd/dogm/dogm_bitmaps.h View File

@@ -425,8 +425,8 @@
425 425
 
426 426
   const unsigned char cw_bmp[] PROGMEM = { //AVR-GCC, WinAVR
427 427
     0x03,0xF8,0x00, // 000000111111100000000000
428
-    0x0F,0xF7,0x00, // 000011111111111000000000
429
-    0x17,0x0F,0x00, // 000111100000111100000000
428
+    0x0F,0xFE,0x00, // 000011111111111000000000
429
+    0x1E,0x0F,0x00, // 000111100000111100000000
430 430
     0x38,0x07,0x00, // 001110000000011100000000
431 431
     0x38,0x03,0x80, // 001110000000001110000000
432 432
     0x70,0x03,0x80, // 011100000000001110000000
@@ -435,9 +435,9 @@
435 435
     0x70,0x03,0x80, // 011100000000001110000000
436 436
     0x70,0x01,0x00, // 011100000000000100000000
437 437
     0x70,0x00,0x00, // 011100000000000000000000
438
-    0x68,0x00,0x00, // 001110000000000000000000
438
+    0x38,0x00,0x00, // 001110000000000000000000
439 439
     0x38,0x07,0x00, // 001110000000011100000000
440
-    0x17,0x0F,0x00, // 000111100000111100000000
440
+    0x1E,0x0F,0x00, // 000111100000111100000000
441 441
     0x0F,0xFE,0x00, // 000011111111111000000000
442 442
     0x03,0xF8,0x00  // 000000111111100000000000
443 443
   };

Loading…
Cancel
Save