v1.0.0 reorg
[hackover2013-badge-firmware.git] / project / commands / drawing / cmd_pixel.c
index cdc118f..9acbdd7 100644 (file)
@@ -84,7 +84,7 @@ void cmd_getpixel(uint8_t argc, char **argv)
   getNumber (argv[1], &y);
 
   // Get pixel and switch R and B
-  uint16_t value = drawBGR2RGB(lcdGetPixel(x, y));
+  uint16_t value = colorsBGR2RGB(lcdGetPixel(x, y));
 
   // Output the results
   printf("%d%s", value, CFG_PRINTF_NEWLINE);
This page took 0.024735 seconds and 4 git commands to generate.