diff --git a/.gitignore b/.gitignore index 3c3629e..55371e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules +.vscode \ No newline at end of file diff --git a/lib/pixel.js b/lib/pixel.js index 251364f..3eb7cc8 100644 --- a/lib/pixel.js +++ b/lib/pixel.js @@ -28,7 +28,7 @@ ColorString.colorValue = function colorValue (colors, g_table) { colors[2] = g_table[colors[2]]; colors[3] = g_table[colors[3]]; - return ((colors[0] << 24) + (colors[0] << 16) + (colors[1] << 8) + (colors[2])); + return ((colors[0] << 24) + (colors[1] << 16) + (colors[2] << 8) + (colors[3])); } // CONSTANTS diff --git a/todo.md b/todo.md index a5a2ef5..f40dd56 100644 --- a/todo.md +++ b/todo.md @@ -36,4 +36,4 @@ * * * -Last generated: Thu Jan 24 2019 15:00:46 by [grunt-todo](https://github.com/leny/grunt-todo). +Last generated: Thu Jan 31 2019 16:19:40 by [grunt-todo](https://github.com/leny/grunt-todo).