Explorar o código

Fix Cursor Issue When Using True Color

This fixes an issue where, when using true color, the changeCursor
function would not actually write the cursor to the target array.

Fixes #407
Solly Ross %!s(int64=10) %!d(string=hai) anos
pai
achega
ec31f82eda
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      include/display.js

+ 6 - 0
include/display.js

@@ -713,6 +713,12 @@ var Display;
                         cur.push(rgb[1]);  // green
                         cur.push(rgb[0]);  // red
                         cur.push(alpha);   // alpha
+                    } else {
+                        idx = ((w0 * y) + x) * 4;
+                        cur.push(pixels[idx + 2]); // blue
+                        cur.push(pixels[idx + 1]); // green
+                        cur.push(pixels[idx]);     // red
+                        cur.push(alpha);           // alpha
                     }
                 }
             }