Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
Fixed generated code for RGB565
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxExe committed Oct 13, 2017
1 parent 2d2571d commit 357f2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Image2Bitmap/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private String GenDrawCode_RGB332(Image image)

private String GenDrawCode_RGB565(Image image)
{
String result = "uint8_t image = {" + Environment.NewLine + "\t";
String result = "uint16_t image = {" + Environment.NewLine + "\t";

using (Bitmap bmp = new Bitmap(image))
{
Expand Down

0 comments on commit 357f2fd

Please sign in to comment.